infinite slop

This commit is contained in:
Theo Browne
2026-02-19 23:51:56 -08:00
parent c9d68d58eb
commit 53f0543e99
4 changed files with 13 additions and 8 deletions

View File

@@ -213,7 +213,7 @@ function Arena({ round, total }: { round: RoundState; total: number }) {
<div className="arena">
<div className="arena__header-row">
<div className="arena__round-badge">
ROUND {round.num} <span className="arena__round-of">/ {total}</span>
ROUND {round.num} {total !== null && <span className="arena__round-of">/ {total}</span>}
</div>
<div className="arena__phase">{phaseLabel}</div>
</div>
@@ -334,7 +334,7 @@ function Sidebar({ scores, activeRound, completed }: { scores: Record<string, nu
<div className="standing__bar">
<div className="standing__bar-fill" style={{ width: `${pct}%`, background: color }} />
</div>
<span className="standing__score">{score}</span>
<span className="standing__score">{score} {score === 1 ? 'win' : 'wins'}</span>
</div>
</div>
</div>