diff --git a/src/App.tsx b/src/App.tsx index 9c97ad5..c5a2f3a 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -28,6 +28,7 @@ import AdminDashboard from './pages/AdminDashboard' import AdminBroadcasts from './pages/AdminBroadcasts' import AdminPromocodes from './pages/AdminPromocodes' import AdminCampaigns from './pages/AdminCampaigns' +import AdminUsers from './pages/AdminUsers' function ProtectedRoute({ children }: { children: React.ReactNode }) { const { isAuthenticated, isLoading } = useAuthStore() @@ -244,6 +245,14 @@ function App() { } /> + + + + } + /> {/* Catch all */} } />