From 87312720d53c91fa9ee64459575ea2251c36c446 Mon Sep 17 00:00:00 2001 From: jnjpng Date: Tue, 10 Mar 2026 13:45:44 -0600 Subject: [PATCH] fix: use shadowed frame for static logo (#1332) --- src/cli/components/AnimatedLogo.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cli/components/AnimatedLogo.tsx b/src/cli/components/AnimatedLogo.tsx index c4cd323..0a45f9f 100644 --- a/src/cli/components/AnimatedLogo.tsx +++ b/src/cli/components/AnimatedLogo.tsx @@ -137,7 +137,7 @@ function getSnapshot(): number { interface AnimatedLogoProps { color?: string; - /** When false, show static frame 0 (flat logo). Defaults to true. */ + /** When false, show static frame 1 (logo with shadow). Defaults to true. */ animate?: boolean; } @@ -146,7 +146,7 @@ export function AnimatedLogo({ animate = true, }: AnimatedLogoProps) { const tick = useSyncExternalStore(subscribe, getSnapshot); - const frame = animate ? tick % normalizedLogoFrames.length : 0; + const frame = animate ? tick % normalizedLogoFrames.length : 1; const logoLines = normalizedLogoFrames[frame]?.split("\n") ?? [];