From d14914eb439838cc4d186a20001d0dbc3f3a26d4 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 18:06:29 +0000 Subject: [PATCH] Update src/components/cardStack/CardStack.tsx --- src/components/cardStack/CardStack.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/cardStack/CardStack.tsx b/src/components/cardStack/CardStack.tsx index 3003a8a..8f6b01a 100644 --- a/src/components/cardStack/CardStack.tsx +++ b/src/components/cardStack/CardStack.tsx @@ -145,7 +145,7 @@ const CardStack = ({ ); } - // Auto-scroll carousel for 5+ items + // Auto-scroll carousel for 1+ items if (mode === "auto") { // Convert depth-3d to scale-rotate for carousel (doesn't support 3D) const carouselAnimationType = animationType === "depth-3d" ? "scale-rotate" : animationType; @@ -184,7 +184,7 @@ const CardStack = ({ ); } - // Button-controlled carousel for 5+ items + // Button-controlled carousel for 1+ items // Convert depth-3d to scale-rotate for carousel (doesn't support 3D) const carouselAnimationType = animationType === "depth-3d" ? "scale-rotate" : animationType;