From 28b2cbd09583c37086e20584291ee5e295b89b50 Mon Sep 17 00:00:00 2001 From: bot-hermes Date: Mon, 7 Sep 2026 17:35:02 +0000 Subject: [PATCH] fix: restore __root.tsx route (accidentally deleted in 2175c24, breaks web build) --- apps/web/src/routes/__root.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 apps/web/src/routes/__root.tsx diff --git a/apps/web/src/routes/__root.tsx b/apps/web/src/routes/__root.tsx new file mode 100644 index 0000000..00c36e4 --- /dev/null +++ b/apps/web/src/routes/__root.tsx @@ -0,0 +1,13 @@ +import { createRootRoute, Outlet } from "@tanstack/react-router"; +import { TanStackRouterDevtools } from "@tanstack/react-router-devtools"; +import { Toaster } from "@/components/ui/sonner"; + +export const Route = createRootRoute({ + component: () => ( +
+ + + {import.meta.env.DEV && } +
+ ), +});