- Интеграция рекурентов от Юкассы

- Багфикс личного кабинета
This commit is contained in:
firewookie
2026-03-06 09:47:58 +05:00
parent e278fec506
commit 00a013f02b
13 changed files with 274 additions and 6 deletions

View File

@@ -28,6 +28,7 @@ import Dashboard from './pages/Dashboard';
const Subscription = lazy(() => import('./pages/Subscription'));
const SubscriptionPurchase = lazy(() => import('./pages/SubscriptionPurchase'));
const Balance = lazy(() => import('./pages/Balance'));
const SavedCards = lazy(() => import('./pages/SavedCards'));
const Referral = lazy(() => import('./pages/Referral'));
const Support = lazy(() => import('./pages/Support'));
const Profile = lazy(() => import('./pages/Profile'));
@@ -236,6 +237,16 @@ function App() {
</ProtectedRoute>
}
/>
<Route
path="/balance/saved-cards"
element={
<ProtectedRoute>
<LazyPage>
<SavedCards />
</LazyPage>
</ProtectedRoute>
}
/>
<Route
path="/balance/top-up"
element={