diff options
Diffstat (limited to 'components/layout/providers.tsx')
| -rw-r--r-- | components/layout/providers.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/components/layout/providers.tsx b/components/layout/providers.tsx index ca6f5c21..11ca23f0 100644 --- a/components/layout/providers.tsx +++ b/components/layout/providers.tsx @@ -11,6 +11,7 @@ import { TooltipProvider } from "@/components/ui/tooltip" import { SessionManager } from "@/components/layout/SessionManager" // ✅ SessionManager 추가 import createEmotionCache from './createEmotionCashe' import { PageVisitTracker } from "../tracking/page-visit-tracker" +import { NotificationProvider } from "@/lib/notification/NotificationContext" const cache = createEmotionCache() @@ -66,7 +67,9 @@ export function ThemeProvider({ {/* ✅ 간소화된 SWR 설정 적용 */} <SWRConfig value={swrConfig}> <PageVisitTracker> - {children} + <NotificationProvider> + {children} + </NotificationProvider> </PageVisitTracker> {/* ✅ SessionManager 추가 - 모든 프로바이더 내부에 위치 */} <SessionManager lng={lng} /> |
