From b0bde79fc9ff51735082363feb91d56918bc9deb Mon Sep 17 00:00:00 2001 From: Hunter Thornsberry Date: Sat, 11 Jul 2026 22:29:32 -0400 Subject: [PATCH] reoder the NavLinks (#1268) Co-authored-by: Hunter275 --- apps/web/src/components/Sidebar.tsx | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/apps/web/src/components/Sidebar.tsx b/apps/web/src/components/Sidebar.tsx index d7f3d603..dd0d407a 100644 --- a/apps/web/src/components/Sidebar.tsx +++ b/apps/web/src/components/Sidebar.tsx @@ -121,17 +121,21 @@ export const Sidebar = ({ children }: SidebarProps) => { page: "messages", count: numUnread ? numUnread : undefined, }, - { name: t("navigation.map"), icon: MapIcon, page: "map" }, - { - name: t("navigation.settings"), - icon: SettingsIcon, - page: "settings", - }, { name: `${t("navigation.nodes")} (${displayedNodeCount})`, icon: UsersIcon, page: "nodes", }, + { + name: t("navigation.map"), + icon: MapIcon, + page: "map", + }, + { + name: t("navigation.settings"), + icon: SettingsIcon, + page: "settings", + }, ]; return (