diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-10-03 01:46:41 +0200 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-10-03 01:46:41 +0200 |
commit | e0aad4f931a57aa7621d4dc7e0a1c1e54170146e (patch) | |
tree | ae52642386b7d0ee5244cc953cc5e4b2825f681b /src-vue/src | |
parent | b23c2b5c2dccb3b33247525a43c4f344d0ba16f3 (diff) | |
download | FlightCore-e0aad4f931a57aa7621d4dc7e0a1c1e54170146e.tar.gz FlightCore-e0aad4f931a57aa7621d4dc7e0a1c1e54170146e.zip |
fix: Null out game path
to avoid installing to an unkown path.
Diffstat (limited to 'src-vue/src')
-rw-r--r-- | src-vue/src/plugins/store.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-vue/src/plugins/store.ts b/src-vue/src/plugins/store.ts index 544d314a..ddd46e53 100644 --- a/src-vue/src/plugins/store.ts +++ b/src-vue/src/plugins/store.ts @@ -28,7 +28,7 @@ export const store = createStore({ return { current_tab: Tabs.PLAY, developer_mode: false, - game_path: "this/is/the/game/path", + game_path: undefined, install_type: undefined, installed_northstar_version: "", |