From 0955084772bd09b6c7526dfeaeff0f0d1fc7bca2 Mon Sep 17 00:00:00 2001 From: fuomag9 <1580624+fuomag9@users.noreply.github.com> Date: Fri, 27 Feb 2026 14:27:05 +0100 Subject: [PATCH] fix: swap Proxy Hosts and Analytics nav order Co-Authored-By: Claude Sonnet 4.6 --- app/(dashboard)/DashboardLayoutClient.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/(dashboard)/DashboardLayoutClient.tsx b/app/(dashboard)/DashboardLayoutClient.tsx index 7cac90e3..9b044b3e 100644 --- a/app/(dashboard)/DashboardLayoutClient.tsx +++ b/app/(dashboard)/DashboardLayoutClient.tsx @@ -38,8 +38,8 @@ type User = { const NAV_ITEMS = [ { href: "/", label: "Overview", icon: DashboardIcon }, - { href: "/analytics", label: "Analytics", icon: BarChartIcon }, { href: "/proxy-hosts", label: "Proxy Hosts", icon: DnsIcon }, + { href: "/analytics", label: "Analytics", icon: BarChartIcon }, { href: "/access-lists", label: "Access Lists", icon: SecurityIcon }, { href: "/certificates", label: "Certificates", icon: ShieldIcon }, { href: "/settings", label: "Settings", icon: SettingsIcon },