We are using PWA Venia Theme. BUY NOW button is not clickable in PLP Page . but it’s working in PDP Page ,
src/components/Gallery – item.js
Full code for Item.js : https://pastebin.com/x3ri4BE8
const addButton =
customOptions && customOptions.length > 0 ? (
<a
id="productFullDetail.addItemToCart1"
target={'_blank'}
class="w-full text-xs tracking-[2.4px] h-[38px] text-[0.7rem]"
>
<button
class="tryVirtualButton-root-aqT bg-[#F8F3EC] border-2 border-[#EFEAE2] p-2 w-full rounded-sm h-[38px] product_button"
type="button"
>
<span class="button-content-TD8 gap-1.5 grid-flow-col inline-grid items-center justify-center justify-items-center">
<span class="text-[#181A1D] tracking-widest font-semibold">
{isStoreUser ? 'SELECT' : 'BUY NOW'}
</span>
</span>
</button>
</a>
)