hide perfect/good/miss counters during gameplay

Keep only the combo display in the score HUD.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
main
name 2026-04-11 19:24:12 -07:00
parent 6ae7edeb56
commit 73dfea963c
1 changed files with 0 additions and 3 deletions

View File

@ -233,9 +233,6 @@ export const ArrowGame = forwardRef<ArrowGameHandle, Props>(({ active = true, ch
return (
<div className="arrow-game">
<div className="ag-score">
<span className="ag-score-perfect">PERFECT {score.perfect}</span>
<span className="ag-score-good">GOOD {score.good}</span>
<span className="ag-score-miss">MISS {score.miss}</span>
{score.combo > 1 && <span className="ag-combo">{score.combo}x COMBO</span>}
</div>