diff --git a/panel/src/games/GameLobby.tsx b/panel/src/games/GameLobby.tsx index 91e4fe7..f6e5c78 100644 --- a/panel/src/games/GameLobby.tsx +++ b/panel/src/games/GameLobby.tsx @@ -142,7 +142,8 @@ function CreateRoomDialog({ if (!show) return null; const selectedGame = configGame ? gameUIRegistry.get(configGame) : null; - const selectedChessControl = CHESS_TIME_CONTROLS.find(control => control.key === chessTimeControl) ?? CHESS_TIME_CONTROLS[0]; + const selectedChessControl = CHESS_TIME_CONTROLS.find(control => control.key === chessTimeControl); + const selectedChessControlDetail = selectedChessControl?.detail ?? "Balanced default for most quick matches."; return (
Room Summary
{CHESS_TIME_CONTROL_LABELS[chessTimeControl]}
-
{selectedChessControl.detail}
+
{selectedChessControlDetail}
Launch