diff --git a/components/carousel.tsx b/components/carousel.tsx index 751cf4b48..2b6d6158e 100644 --- a/components/carousel.tsx +++ b/components/carousel.tsx @@ -8,6 +8,7 @@ export async function Carousel() { if (!products?.length) return null; + // test // Purposefully duplicating products to make the carousel loop and not run out of products on wide screens. const carouselProducts = [...products, ...products, ...products];