From d5783d829300b15188178c773c463d75d0188e8f Mon Sep 17 00:00:00 2001 From: Egor Date: Sat, 17 Jan 2026 08:52:20 +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 c5a2f3a..02d9471 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -29,6 +29,7 @@ import AdminBroadcasts from './pages/AdminBroadcasts' import AdminPromocodes from './pages/AdminPromocodes' import AdminCampaigns from './pages/AdminCampaigns' import AdminUsers from './pages/AdminUsers' +import AdminPayments from './pages/AdminPayments' function ProtectedRoute({ children }: { children: React.ReactNode }) { const { isAuthenticated, isLoading } = useAuthStore() @@ -253,6 +254,14 @@ function App() { } /> + + + + } + /> {/* Catch all */} } />