From 69c12ee5a0e11aad2aea866d0b4ab825b4132bdd Mon Sep 17 00:00:00 2001 From: Egor Date: Mon, 26 Jan 2026 21:59:56 +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 e02e997..6bf60f8 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -44,6 +44,7 @@ const AdminUsers = lazy(() => import('./pages/AdminUsers')) const AdminPayments = lazy(() => import('./pages/AdminPayments')) const AdminPromoOffers = lazy(() => import('./pages/AdminPromoOffers')) const AdminRemnawave = lazy(() => import('./pages/AdminRemnawave')) +const AdminEmailTemplates = lazy(() => import('./pages/AdminEmailTemplates')) function ProtectedRoute({ children }: { children: React.ReactNode }) { const { isAuthenticated, isLoading } = useAuthStore() @@ -332,6 +333,14 @@ function App() { } /> + + + + } + /> {/* Catch all */} } />