From 89d40fc4ee4d2129edcedc5d4691e07e77615a45 Mon Sep 17 00:00:00 2001 From: Egor Date: Sat, 17 Jan 2026 09:50:38 +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 02d9471..01be82b 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -30,6 +30,7 @@ import AdminPromocodes from './pages/AdminPromocodes' import AdminCampaigns from './pages/AdminCampaigns' import AdminUsers from './pages/AdminUsers' import AdminPayments from './pages/AdminPayments' +import AdminPromoOffers from './pages/AdminPromoOffers' function ProtectedRoute({ children }: { children: React.ReactNode }) { const { isAuthenticated, isLoading } = useAuthStore() @@ -262,6 +263,14 @@ function App() { } /> + + + + } + /> {/* Catch all */} } />