diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-12-28 23:08:25 +0100 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2025-12-28 23:10:24 +0100 |
| commit | 120a3c6bddd0fb8d9fa05df4763596956554c025 (patch) | |
| tree | 3ed99935b58b1a269030aa2a638f35c0aa989f55 /src/frontend/app/root.tsx | |
| parent | 9618229477439d1604869aa68fc21d4eae7d8bb1 (diff) | |
Improve planning widget
Diffstat (limited to 'src/frontend/app/root.tsx')
| -rw-r--r-- | src/frontend/app/root.tsx | 5 |
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> ); |
