Fix jwt-token

This commit is contained in:
2025-09-01 07:24:36 +02:00
parent 8c4fc4f62b
commit e312c61b56
6 changed files with 507 additions and 3 deletions

View File

@@ -9,6 +9,7 @@ import MapView from './pages/MapView';
import Devices from './pages/Devices';
import Detections from './pages/Detections';
import Alerts from './pages/Alerts';
import Debug from './pages/Debug';
import Login from './pages/Login';
import ProtectedRoute from './components/ProtectedRoute';
@@ -68,6 +69,7 @@ function App() {
<Route path="devices" element={<Devices />} />
<Route path="detections" element={<Detections />} />
<Route path="alerts" element={<Alerts />} />
<Route path="debug" element={<Debug />} />
</Route>
</Routes>
</div>