diff --git a/frontend/src/components/Game/Lobby.svelte b/frontend/src/components/Game/Lobby.svelte
index 4d86012..fbd1047 100644
--- a/frontend/src/components/Game/Lobby.svelte
+++ b/frontend/src/components/Game/Lobby.svelte
@@ -21,9 +21,13 @@
UserX,
Play,
TextCursorInput,
+
+ Gamepad2
+
} from "lucide-svelte";
import { _ } from "svelte-i18n";
import { GameState, sessionStore } from "../../stores/sessionStore";
+ import { toggleLobbyOverlay } from '../../stores/gameStore';
let copied = false;
let showLeaveModal = false;
@@ -160,16 +164,27 @@
{$_("lobby.leave_game")}
+
+{#if sessionStore.getState().gameState !== GameState.Lobby}
+
+{/if}
+
- {$_("game_status.game_status", {
- values: {
- game_status: $_(
- `game_status.${GameState[$sessionStore.gameState].toLowerCase()}`,
- ),
- },
- })}{$_("game_status.game_status")}
+
+ {$_(`game_status.${GameState[$sessionStore.gameState].toLowerCase()}`)}
+
+
@@ -181,6 +196,8 @@
{/if}
+
+ {#if sessionStore.getState().gameState === GameState.Lobby}