diff --git a/components/carousel.tsx b/components/carousel.tsx index 2b6d6158e..751cf4b48 100644 --- a/components/carousel.tsx +++ b/components/carousel.tsx @@ -8,7 +8,6 @@ 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];