when the collection view icon doesn't appear in the products load while scrolling we use that code to fix the lazy load issue
- Click on Customize the theme button
- Add the below code in App embeds => Additional integration code (Additional HTML)
<script src="https://cdnjs.cloudflare.com/ajax/libs/arrive/2.4.1/arrive.min.js"></script>
<script type="text/javascript">
document.arrive(".wishlist-hero-custom-button", function (wishlistButton) {
var ev = new CustomEvent("wishlist-hero-add-to-custom-element", {
detail: wishlistButton,
});
document.dispatchEvent(ev);
});
</script>