From bb8b6211858531282809df005a49d6182bfe991f Mon Sep 17 00:00:00 2001 From: neocybereth Date: Tue, 18 Nov 2025 12:33:58 +1300 Subject: [PATCH] fix: update side menu --- apps/namadillo/src/App/Layout/Navigation.tsx | 51 ++++++++------------ 1 file changed, 19 insertions(+), 32 deletions(-) diff --git a/apps/namadillo/src/App/Layout/Navigation.tsx b/apps/namadillo/src/App/Layout/Navigation.tsx index 9d345e4932..d14245ad0b 100644 --- a/apps/namadillo/src/App/Layout/Navigation.tsx +++ b/apps/namadillo/src/App/Layout/Navigation.tsx @@ -23,16 +23,6 @@ export const Navigation = (): JSX.Element => { icon: , url: routes.root, }, - { - label: "Staking", - icon: , - url: routes.staking, - }, - { - label: "Governance", - icon: , - url: routes.governance, - }, { label: "Shield", icon: , @@ -52,10 +42,20 @@ export const Navigation = (): JSX.Element => { url: routes.receive, }, { - label: "Shielded Swaps", + label: "Swap", icon: , url: routes.swap, }, + { + label: "Staking", + icon: , + url: routes.staking, + }, + { + label: "Governance", + icon: , + url: routes.governance, + }, { label: "History", icon: , @@ -69,27 +69,14 @@ export const Navigation = (): JSX.Element => { return (
    - {menuItems.map((item) => { - const shieldingRoute = item.label === "Shield"; - const historyRoute = item.label === "History"; - return ( -
  • - {shieldingRoute && ( - <> -
    -
    Move Assets
    - - )} - - {item.icon} - {item.label} - - {historyRoute && ( -
    - )} -
  • - ); - })} + {menuItems.map((item) => ( +
  • + + {item.icon} + {item.label} + +
  • + ))}