diff --git a/frontend/src/components/settings/SettingsOverlay.vue b/frontend/src/components/settings/SettingsOverlay.vue
index 7fc9236..b6d3592 100644
--- a/frontend/src/components/settings/SettingsOverlay.vue
+++ b/frontend/src/components/settings/SettingsOverlay.vue
@@ -1,5 +1,5 @@
@@ -161,6 +233,7 @@ const verifySteamPath = () => {
@@ -181,6 +254,7 @@ const verifySteamPath = () => {
@@ -194,6 +268,7 @@ const verifySteamPath = () => {
diff --git a/frontend/src/stores/game.ts b/frontend/src/stores/game.ts
index b484a46..1932c12 100644
--- a/frontend/src/stores/game.ts
+++ b/frontend/src/stores/game.ts
@@ -1,20 +1,18 @@
-import type { ThunderstoreGame } from '@types'
import { defineStore } from 'pinia'
-
-import { Save, SetFavouriteGames } from '@backend/app/Persistence'
import { ref, computed } from 'vue'
+import { Save, SetFavouriteGames } from '@backend/app/Persistence'
import { GetPersistence } from '@backend/app/Application.js'
-import { BepinexInstalled } from '@backend/game/GameManager.js'
import { ExistsAtPath } from '@backend/app/Utils.js'
-
-// eslint-disable-next-line @typescript-eslint/consistent-type-imports
+import { BepinexInstalled } from '@backend/game/GameManager.js'
import { thunderstore } from '@backend/models.js'
-export interface GameState {
- selectedGame: ThunderstoreGame,
- games: Map
-}
+import type { ThunderstoreGame } from '@types'
+
+// export interface GameState {
+// selectedGame: ThunderstoreGame,
+// games: Map
+// }
export const useGameStore = defineStore('GameStore', () => {
//#region State