From f1779433bda1ba94f72fa5dfad21f81ad386d1b0 Mon Sep 17 00:00:00 2001 From: Egor Date: Sat, 17 Jan 2026 06:05:19 +0300 Subject: [PATCH] Update App.tsx --- src/App.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) 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 */} } />