Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-16 23:01:43 +00:00
co-authored by renee-png
parent ff8e732229
commit e81901f30a
+6 -1
View File
@@ -1,4 +1,5 @@
import { Outlet, Link, createRootRoute, HeadContent, Scripts } from "@tanstack/react-router";
import { AuthProvider } from "@/lib/auth";
import appCss from "../styles.css?url";
@@ -67,5 +68,9 @@ function RootShell({ children }: { children: React.ReactNode }) {
}
function RootComponent() {
return <Outlet />;
return (
<AuthProvider>
<Outlet />
</AuthProvider>
);
}