diff options
| author | Copilot <198982749+Copilot@users.noreply.github.com> | 2026-03-24 20:32:17 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-24 20:32:17 +0100 |
| commit | 695c7a65a1e9ab3b95beeaf02a1e3b10bb16996b (patch) | |
| tree | f302b91a050e3ecfb295b5d16c6ab2962de1a713 /src/frontend/app/root.tsx | |
| parent | 757960525576038898d655b630cbaac44671f599 (diff) | |
feat: client-side trip tracking with browser notifications (#151)
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: arielcostas <94913521+arielcostas@users.noreply.github.com>
Diffstat (limited to 'src/frontend/app/root.tsx')
| -rw-r--r-- | src/frontend/app/root.tsx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/frontend/app/root.tsx b/src/frontend/app/root.tsx index 5faafd8..72daab9 100644 --- a/src/frontend/app/root.tsx +++ b/src/frontend/app/root.tsx @@ -22,6 +22,7 @@ maplibregl.addProtocol("pmtiles", pmtiles.tile); //#endregion import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; +import { JourneyProvider } from "./contexts/JourneyContext"; import { PlannerProvider } from "./contexts/PlannerContext"; import "./i18n"; @@ -342,9 +343,11 @@ export default function App() { return ( <QueryClientProvider client={queryClient}> <AppProvider> - <PlannerProvider> - <AppShell /> - </PlannerProvider> + <JourneyProvider> + <PlannerProvider> + <AppShell /> + </PlannerProvider> + </JourneyProvider> </AppProvider> </QueryClientProvider> ); |
