diff --git a/layers/stores/useGameDataStore.ts b/layers/stores/useGameDataStore.ts index 72fab36..b630ed9 100644 --- a/layers/stores/useGameDataStore.ts +++ b/layers/stores/useGameDataStore.ts @@ -21,7 +21,6 @@ export const useGameDataStore = defineStore('gameData', () => { fontFamily: null as GameDataValue['game_font']['font_family'] | null, gnb: null as GameDataValue['gnb'] | null, eventBanner: null as GameDataValue['event_banner'] | null, - fontFamily: null as GameDataValue['game_font']['font_family'] | null, }) const state = reactive(getInitialState()) @@ -46,7 +45,6 @@ export const useGameDataStore = defineStore('gameData', () => { state.fontFamily = data?.game_font?.font_family state.gnb = data?.gnb state.eventBanner = data?.event_banner - state.fontFamily = data?.game_font?.font_family } const clearGameData = () => {