Correctly display Amazon Link disclaimer when Amazon Link is present on product pages.

This commit is contained in:
David Ball 2024-07-13 05:43:37 -04:00
parent f53200fe10
commit 2328893a27

View File

@ -80,7 +80,7 @@ const brand: Brand = ALL_BRANDS.find(b => b.slug === product.brandStoreSlug)!;
</div>
<br />
</main>
{product?.amazonProductDetails &&
{product?.amazonLink &&
<span slot="disclaimers">As an Amazon Associate I earn from qualifying purchases.</span>
}
</Layout>