diff --git a/src/components/dashboard/StatsPanel.tsx b/src/components/dashboard/StatsPanel.tsx index 7879993..cd06320 100644 --- a/src/components/dashboard/StatsPanel.tsx +++ b/src/components/dashboard/StatsPanel.tsx @@ -83,9 +83,11 @@ const RollingValue: React.FC<{ value: string }> = ({ value }) => { const chars = value.split(''); return ( - {chars.map((c, i) => ( - - ))} + {chars.map((c, i) => { + // Calculate index from the right so keys are stable as digit count grows + const keyIndex = chars.length - 1 - i; + return ; + })} ); };