diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-07-24 14:09:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-24 14:09:55 +0200 |
commit | a6d0f9e26d4709574b43d1ab008ceb7925f5b53c (patch) | |
tree | 34047deaed2c2eadec1807e89459236af5e028e0 /src-vue | |
parent | 44583f739af9db81751655f7391757a28e949239 (diff) | |
download | FlightCore-a6d0f9e26d4709574b43d1ab008ceb7925f5b53c.tar.gz FlightCore-a6d0f9e26d4709574b43d1ab008ceb7925f5b53c.zip |
chore: Fix typo in comment (#448)
Just fixes a single typo in a comment
Diffstat (limited to 'src-vue')
-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 76a33b48..37d0d89d 100644 --- a/src-vue/src/plugins/store.ts +++ b/src-vue/src/plugins/store.ts @@ -280,7 +280,7 @@ export const store = createStore<FlightCoreStore>({ async loadInstalledMods(state: FlightCoreStore) { // If there's no game path, prevent looking for installed mods. if (state.game_install.game_path === undefined) { - console.warn('Cannot load installed mods since so game path is selected.'); + console.warn('Cannot load installed mods since no game path is selected.'); return; } |