Skip to content

Commit 6bd0c34

Browse files
committed
fix: JotaiProvider 원복
1 parent 3a4fdc4 commit 6bd0c34

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

apps/admin/app/layout.tsx

+6-3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import "./global.css";
22
import "wowds-ui/styles.css";
33
import "@wow-class/ui/styles.css";
44

5+
import { JotaiProvider } from "components/JotaiProvider";
56
import Navbar from "components/Navbar";
67
import type { Metadata } from "next";
78
import type { ReactNode } from "react";
@@ -21,9 +22,11 @@ const RootLayout = ({
2122
return (
2223
<html lang="ko">
2324
<body>
24-
<Navbar />
25-
{children}
26-
{modal}
25+
<JotaiProvider>
26+
<Navbar />
27+
{children}
28+
{modal}
29+
</JotaiProvider>
2730
</body>
2831
</html>
2932
);

0 commit comments

Comments
 (0)