aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/app/root.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/app/root.tsx')
-rw-r--r--src/frontend/app/root.tsx5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/frontend/app/root.tsx b/src/frontend/app/root.tsx
index 7b56b2d..87d7a9c 100644
--- a/src/frontend/app/root.tsx
+++ b/src/frontend/app/root.tsx
@@ -21,6 +21,7 @@ maplibregl.addProtocol("pmtiles", pmtiles.tile);
//#endregion
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
+import { PlannerProvider } from "./contexts/PlannerContext";
import "./i18n";
const queryClient = new QueryClient();
@@ -95,7 +96,9 @@ export default function App() {
return (
<QueryClientProvider client={queryClient}>
<AppProvider>
- <AppShell />
+ <PlannerProvider>
+ <AppShell />
+ </PlannerProvider>
</AppProvider>
</QueryClientProvider>
);