fix. 머지 충돌 해결

This commit is contained in:
clkim
2026-01-16 15:02:33 +09:00
parent 3d453b7b0a
commit 18c3a7ce11

View File

@@ -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 = () => {