···101101 const isSeeker = lobbyState.teams[lobbyState.self_id] ?? false;
102102103103 const onLeaveLobby = () => {
104104+ // Don't prompt since the lobby is empty (besides us obv)
105105+ // <= even though it should never be 0... hopefully....
106106+ if (lobbyState.is_host && profiles.length <= 1) {
107107+ commands.quitToMenu();
108108+ return;
109109+ }
104110 const hostMsg = lobbyState.is_host ? " You are the host so this will cancel the lobby" : "";
105111106112 const msg = `Are you sure you want to leave this lobby?${hostMsg}`;