From 88001cfe4983222587316af9f85f0bb29a8ab50b Mon Sep 17 00:00:00 2001 From: MananTank Date: Mon, 8 Sep 2025 22:28:57 +0000 Subject: [PATCH] [BLD-271] Portal: Change Header nav link order (#8013) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ## PR-Codex overview This PR focuses on modifying the `links` array in the `Header.tsx` file by removing and then re-adding the `Payments` and `Bridge` items, thereby changing their order within the array. ### Detailed summary - Removed `Payments` link from the `links` array. - Removed `Bridge` link from the `links` array. - Re-added `Payments` link to the `links` array. - Re-added `Bridge` link to the `links` array. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` ## Summary by CodeRabbit * **Style** * Updated top navigation order: Payments and Bridge now appear after Contracts instead of immediately after Wallets. * Applies to both desktop navigation and the mobile menu, improving consistency across views without changing the available links or destinations. --- apps/portal/src/app/Header.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/apps/portal/src/app/Header.tsx b/apps/portal/src/app/Header.tsx index d865850e123..9445db0c44b 100644 --- a/apps/portal/src/app/Header.tsx +++ b/apps/portal/src/app/Header.tsx @@ -31,14 +31,6 @@ const links = [ href: "/wallets", name: "Wallets", }, - { - href: "/payments", - name: "Payments", - }, - { - href: "/bridge", - name: "Bridge", - }, { href: "/transactions", name: "Transactions", @@ -47,6 +39,14 @@ const links = [ href: "/contracts", name: "Contracts", }, + { + href: "/payments", + name: "Payments", + }, + { + href: "/bridge", + name: "Bridge", + }, { href: "/tokens", name: "Tokens",