Skip to content

Commit

Permalink
swap game and turn time
Browse files Browse the repository at this point in the history
  • Loading branch information
naueramant committed Aug 13, 2024
1 parent 35b97a4 commit b4f2e87
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/views/Game/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ const Header: FunctionComponent = () => {
Round {gameMetrics.currentRound.toString().padStart(2, "0")}/
{game.numberOfRounds}
</Typography>

<Stack
sx={{
textAlign: "center",
Expand All @@ -198,10 +199,11 @@ const Header: FunctionComponent = () => {
lineHeight: 1,
}}
>
{secondsToHHMMSS(elapsedGameTime)}
{secondsToHHMMSSsss(elapsedTurnTime)}
</Typography>
<Typography>{secondsToHHMMSSsss(elapsedTurnTime)}</Typography>
<Typography>{secondsToHHMMSS(elapsedGameTime)}</Typography>
</Stack>

<Typography
variant="h5"
sx={{
Expand Down

0 comments on commit b4f2e87

Please sign in to comment.