diff --git a/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx b/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx index d7207a5b..5fd89df6 100644 --- a/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx +++ b/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx @@ -64,7 +64,7 @@ const WIN_EASE_MS = 420; // A little spark when the cursor pops into existence: short orange lines shoot out from the // tip and fade. Re-keyed on each pop so it replays. One-shot per mount (no infinite loop). -const BURST_SPOKES = 8; +const BURST_SPOKES = 6; const CursorBurst: React.FC<{ color: string }> = ({ color }) => ( <> {Array.from({ length: BURST_SPOKES }).map((_, i) => ( @@ -73,10 +73,10 @@ const CursorBurst: React.FC<{ color: string }> = ({ color }) => ( style={{ position: 'absolute', left: 3, top: 3, transform: `rotate(${(i / BURST_SPOKES) * 360}deg)` }} > ))}