From a180d3fb647ee66ce2c3e6966b0f64ddff496beb Mon Sep 17 00:00:00 2001 From: Which Node Date: Sun, 18 May 2025 21:33:02 -0600 Subject: [PATCH] Disable Accounts page until it displays correctly --- web-app/src/modules/core/router.tsx | 2 +- web-app/src/modules/ui/Layout/Header/Header.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/web-app/src/modules/core/router.tsx b/web-app/src/modules/core/router.tsx index 7c70e326..5be65954 100644 --- a/web-app/src/modules/core/router.tsx +++ b/web-app/src/modules/core/router.tsx @@ -70,7 +70,7 @@ const router = createBrowserRouter([ element: , }, { - path: '/accounts', + path: '/accounts-test', element: , }, { diff --git a/web-app/src/modules/ui/Layout/Header/Header.tsx b/web-app/src/modules/ui/Layout/Header/Header.tsx index 49ef950c..eeee45bb 100644 --- a/web-app/src/modules/ui/Layout/Header/Header.tsx +++ b/web-app/src/modules/ui/Layout/Header/Header.tsx @@ -14,7 +14,7 @@ const navigation = [ { name: 'Transactions', to: '/transactions' }, { name: 'Validators', to: '/validators' }, { name: 'Community Wallets', to: '/community-wallets' }, - { name: 'Accounts', to: '/accounts' }, + // Removed until it displays correctly { name: 'Accounts', to: '/accounts' }, { name: 'Stats', to: '/stats' }, ];