From 92f46336666320d40397c439802fbd60740a593a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89tienne=20St-Pierre?= Date: Tue, 25 Mar 2025 18:53:24 -0400 Subject: [PATCH] Fix --- components/carousel.tsx | 1 - 1 file changed, 1 deletion(-) 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];