Skip to content

Commit

Permalink
game: Offset position
Browse files Browse the repository at this point in the history
  • Loading branch information
TomNuttall committed Dec 3, 2024
1 parent 4cb48bc commit 645a5f3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/game/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ const App: React.FC = () => {
case GameState.Results:
return (
<WaitPanel
msg={`You finished ${formatOrdinals(gameData?.position ?? 1)}`}
msg={`You finished ${formatOrdinals(
(gameData?.position ?? 0) + 1,
)}`}
/>
)
}
Expand Down

0 comments on commit 645a5f3

Please sign in to comment.