diff --git a/.gitignore b/.gitignore index e03a68e..121e660 100755 --- a/.gitignore +++ b/.gitignore @@ -302,6 +302,6 @@ cython_debug/ # option (not recommended) you can uncomment the following to ignore the entire idea folder. .idea/ *.iml - +.junie/* # Docker volumes postgres_data*/ diff --git a/frontend/src/app/layout.tsx b/frontend/src/app/layout.tsx index bd21ddc..57dbd68 100755 --- a/frontend/src/app/layout.tsx +++ b/frontend/src/app/layout.tsx @@ -2,6 +2,8 @@ import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; import { Providers } from "./providers"; +import { AuthProvider } from "@/lib/auth/AuthContext"; +import { AuthInitializer } from "@/components/auth"; const geistSans = Geist({ variable: "--font-geist-sans", @@ -58,7 +60,10 @@ export default function RootLayout({
-