From 2ebcea0255a725d77796372bcc93682efe5e792f Mon Sep 17 00:00:00 2001 From: byeongcheolryu Date: Mon, 22 Dec 2025 11:00:12 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20themeStore=20localStorage=20=ED=82=A4=20?= =?UTF-8?q?ThemeContext=EC=99=80=20=ED=86=B5=EC=9D=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - localStorage 키를 'sam-theme'에서 'theme'으로 변경 - ThemeContext와 동일한 키 사용으로 마이그레이션 호환성 확보 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- src/store/themeStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/themeStore.ts b/src/store/themeStore.ts index 21b4a3e9..0ad63264 100644 --- a/src/store/themeStore.ts +++ b/src/store/themeStore.ts @@ -28,7 +28,7 @@ export const useThemeStore = create()( }, }), { - name: 'sam-theme', + name: 'theme', // ThemeContext와 동일한 키 사용 (마이그레이션 호환성) // Zustand persist 재수화 시 HTML 클래스 복원 onRehydrateStorage: () => (state) => { if (state?.theme) {