diff --git a/application/src/App.tsx b/application/src/App.tsx index f0907e3..9c79abf 100644 --- a/application/src/App.tsx +++ b/application/src/App.tsx @@ -16,6 +16,7 @@ import Settings from "./pages/Settings"; import Profile from "./pages/Profile"; import NotFound from "./pages/NotFound"; import SslDomain from "./pages/SslDomain"; +import ScheduleIncident from "./pages/ScheduleIncident"; // Create a Protected route component const ProtectedRoute = ({ children }: { children: React.ReactNode }) => { @@ -102,6 +103,14 @@ const App = () => { } /> + + + + } + /> {/* ADD ALL CUSTOM ROUTES ABOVE THE CATCH-ALL "*" ROUTE */} } />