릴리스: v1.4.3 사용자 노출 용어 정리 3차

This commit is contained in:
2026-04-02 18:17:50 +09:00
parent d5621362f1
commit 31613e4613
8 changed files with 36 additions and 30 deletions

View File

@@ -43,7 +43,7 @@ export function useAdminFeaturedGames({
resetMessages()
if (!gameId || featuredGameIds.value.includes(gameId)) return
if (featuredGameIds.value.length >= 50) {
error.value = '상단 고정 게임은 최대 50개까지만 설정할 수 있어요.'
error.value = '상단 고정 템플릿은 최대 50개까지만 설정할 수 있어요.'
return
}
featuredGameIds.value = [...featuredGameIds.value, gameId]
@@ -76,9 +76,9 @@ export function useAdminFeaturedGames({
.filter((game) => game.displayRank != null)
.sort((a, b) => a.displayRank - b.displayRank)
.map((game) => game.id)
success.value = '홈 화면 게임 순서를 저장했어요.'
success.value = '홈 화면 템플릿 순서를 저장했어요.'
} catch (e) {
error.value = '게임 순서 저장에 실패했어요.'
error.value = '템플릿 순서 저장에 실패했어요.'
}
}