fix. 수정

This commit is contained in:
clkim
2026-01-19 15:45:15 +09:00
parent b5b5b1d048
commit a9e0532e95
5 changed files with 17 additions and 11 deletions

View File

@@ -18,7 +18,9 @@ export const useGameDataStore = defineStore('gameData', () => {
snsJson: null as GameDataValue['sns_json'] | null,
urlJson: null as GameDataValue['url_json'] | null,
marketJson: null as GameDataValue['market_json'] | null,
fontFamily: null as GameDataValue['game_font']['font_family'] | null,
fontFamily: null as
| GameDataValue['game_font_key_json']['font_family']
| null,
gnb: null as GameDataValue['gnb'] | null,
eventBanner: null as GameDataValue['event_banner'] | null,
})
@@ -42,7 +44,7 @@ export const useGameDataStore = defineStore('gameData', () => {
state.snsJson = data?.sns_json
state.urlJson = data?.url_json
state.marketJson = data?.market_json
state.fontFamily = data?.game_font?.font_family
state.fontFamily = data?.game_font_key_json?.font_family
state.gnb = data?.gnb
state.eventBanner = data?.event_banner
}