misc: fix compiler error

This commit is contained in:
2026-04-15 17:53:48 -04:00
Unverified
parent 25ff26b341
commit a630655a0a
2 changed files with 7 additions and 1 deletions

View File

@@ -443,7 +443,7 @@ export default function SpectatePage() {
player1: game.player1,
player2: game.player2,
currentTurnColor: game.result ? null : game.currentTurnColor,
resultKind: game.result?.kind ?? null,
resultKind: null,
status: game.result ? "completed" : "live",
});
}