Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-17 00:26:30 +00:00
co-authored by renee-png
parent 24c5326293
commit 28ad65edc6
3 changed files with 12 additions and 3 deletions
+4 -1
View File
@@ -1,5 +1,6 @@
import { Outlet, Link, createRootRoute, HeadContent, Scripts } from "@tanstack/react-router";
import { AuthProvider } from "@/lib/auth";
import { TimerProvider } from "@/lib/timer";
import appCss from "../styles.css?url";
@@ -70,7 +71,9 @@ function RootShell({ children }: { children: React.ReactNode }) {
function RootComponent() {
return (
<AuthProvider>
<Outlet />
<TimerProvider>
<Outlet />
</TimerProvider>
</AuthProvider>
);
}