Skip to content

Commit

Permalink
Fix clock label
Browse files Browse the repository at this point in the history
  • Loading branch information
ahasselbring committed Jul 12, 2024
1 parent a733744 commit e515791
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/main/ClockPanel.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const getPhaseDescription = (game) => {
return game.state === "finished" ? "Half-Time Break" : "First Half";
case "secondHalf":
return game.state === "initial" || game.state === "standby"
? "Half-Team Break"
? "Half-Time Break"
: "Second Half";
case "penaltyShootout":
return "Penalty Shoot-out";
Expand Down

0 comments on commit e515791

Please sign in to comment.