diff --git a/src/components/SubtractionGame.tsx b/src/components/SubtractionGame.tsx index 18783fa..4887d3e 100644 --- a/src/components/SubtractionGame.tsx +++ b/src/components/SubtractionGame.tsx @@ -212,14 +212,18 @@ const SubtractionGame: React.FC = ({ showSocialShare = tru
{circles.map((_, index) => ( -
handleCircleClick(index)} - onMouseEnter={() => (highlightedIndices.includes(index) && !removedCircles.has(index)) ? setHoveredIndex(index) : null} - onMouseLeave={() => setHoveredIndex(null)} - title={highlightedIndices.includes(index) ? 'Click to select' : 'Not selectable'} - /> +
+
handleCircleClick(index)} + onMouseEnter={() => (highlightedIndices.includes(index) && !removedCircles.has(index)) ? setHoveredIndex(index) : null} + onMouseLeave={() => setHoveredIndex(null)} + title={highlightedIndices.includes(index) ? 'Click to select' : 'Not selectable'} + /> + + {index + 1} + +
))}