Skip to content

Commit 88001cf

Browse files
committed
[BLD-271] Portal: Change Header nav link order (#8013)
<!-- ## title your PR with this format: "[SDK/Dashboard/Portal] Feature/Fix: Concise title for the changes" If you did not copy the branch name from Linear, paste the issue tag here (format is TEAM-0000): ## Notes for the reviewer Anything important to call out? Be sure to also clarify these in your comments. ## How to test Unit tests, playground, etc. --> <!-- start pr-codex --> --- ## 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}` <!-- end pr-codex --> <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## 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. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent a9c388a commit 88001cf

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

apps/portal/src/app/Header.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,6 @@ const links = [
3131
href: "/wallets",
3232
name: "Wallets",
3333
},
34-
{
35-
href: "/payments",
36-
name: "Payments",
37-
},
38-
{
39-
href: "/bridge",
40-
name: "Bridge",
41-
},
4234
{
4335
href: "/transactions",
4436
name: "Transactions",
@@ -47,6 +39,14 @@ const links = [
4739
href: "/contracts",
4840
name: "Contracts",
4941
},
42+
{
43+
href: "/payments",
44+
name: "Payments",
45+
},
46+
{
47+
href: "/bridge",
48+
name: "Bridge",
49+
},
5050
{
5151
href: "/tokens",
5252
name: "Tokens",

0 commit comments

Comments
 (0)