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}
+
+
+ ))}