hide flying arrows when game is paused

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
main
name 2026-04-11 22:57:50 -07:00
parent be07c87546
commit f81b979bdd
1 changed files with 1 additions and 1 deletions

View File

@ -314,7 +314,7 @@ export const ArrowGame = forwardRef<ArrowGameHandle, Props>(({ active = true, ch
))}
</div>
{arrows.map(a => (
{active && arrows.map(a => (
<div
key={a.id}
className={`ag-arrow ag-arrow-${a.status}`}