Neue Seite um Betriebe zu überwachen

This commit is contained in:
2025-11-10 17:00:59 +01:00
parent 89e7f77a4e
commit 1f0ba8f564
2 changed files with 114 additions and 11 deletions

View File

@@ -696,7 +696,7 @@ function App() {
<NavigationTabs isAdmin={session?.isAdmin} onProtectedNavigate={requestNavigation} />
<Routes>
<Route path="/" element={dashboardContent} />
<Route path="/store-watch" element={<StoreWatchPage authorizedFetch={authorizedFetch} />} />
<Route path="/store-watch" element={<StoreWatchPage authorizedFetch={authorizedFetch} knownStores={stores} />} />
<Route path="/admin" element={adminPageContent} />
<Route path="*" element={<Navigate to="/" replace />} />
</Routes>