diff options
Diffstat (limited to 'ui')
| -rw-r--r-- | ui/src/stores/game.svelte.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/src/stores/game.svelte.ts b/ui/src/stores/game.svelte.ts index 3128cc6..f66cc71 100644 --- a/ui/src/stores/game.svelte.ts +++ b/ui/src/stores/game.svelte.ts @@ -35,6 +35,8 @@ export class GameState { // Fallback to just the first ID if not in manifest this.selectedVersion = this.installedVersionIds[0]; } + } else { + this.selectedVersion = ""; } } catch (e) { console.error("Failed to fetch versions:", e); |