diff --git a/client/src/components/nav.jsx b/client/src/components/nav.jsx index ab4cc24e..931fa328 100644 --- a/client/src/components/nav.jsx +++ b/client/src/components/nav.jsx @@ -120,9 +120,10 @@ function Nav(args) { const joined = instances.map(i => { const score = i.players.find(p => p.id === account.id); - const phase = i.rounds[i.rounds.length - 1].game_id - ? 'In game' - : 'Vbox'; + const phase = i.phase === 'Lobby' + ? 'Lobby' : i.rounds[i.rounds.length - 1].game_id + ? 'In game' + : 'Vbox'; return });