Remove current position indicator

Eliminate the moving green circle indicator around the current clock position to simplify the visuals. This patch removes the current-position dashed green ring from the clock rendering.

X-Lovable-Edit-ID: edt-0059841c-aaf9-411d-acaa-883394211df7
This commit is contained in:
gpt-engineer-app[bot] 2026-01-21 15:52:57 +00:00
commit 6dafca377e

View file

@ -334,21 +334,6 @@ const LadybugClockPuzzle: React.FC<LadybugClockPuzzleProps> = ({ showSocialShare
> >
{positionToNumber(i)} {positionToNumber(i)}
</text> </text>
{/* Current position indicator */}
{isCurrent && (
<circle
cx={pos.x}
cy={pos.y}
r="26"
fill="none"
stroke="#22c55e"
strokeWidth="3"
strokeDasharray="6 3"
className="animate-spin"
style={{ animationDuration: '3s' }}
/>
)}
</g> </g>
); );
})} })}