From 4bc278de394b4cbaeb135e1da535d304fbbb331b Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Wed, 20 May 2026 21:01:45 -0400 Subject: [PATCH] feat(web): order Models above Integrations in settings nav Co-Authored-By: Claude Opus 4.7 (1M context) --- apps/fabro-web/app/routes/settings.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/fabro-web/app/routes/settings.tsx b/apps/fabro-web/app/routes/settings.tsx index 20f2ebf71..da33e5200 100644 --- a/apps/fabro-web/app/routes/settings.tsx +++ b/apps/fabro-web/app/routes/settings.tsx @@ -35,18 +35,18 @@ const navItems: NavEntry[] = [ icon: Cog6ToothIcon, match: (p) => p === "/settings", }, - { - name: "Integrations", - href: "/settings/integrations", - icon: PuzzlePieceIcon, - match: (p) => p.startsWith("/settings/integrations"), - }, { name: "Models", href: "/settings/models", icon: CpuChipIcon, match: (p) => p.startsWith("/settings/models"), }, + { + name: "Integrations", + href: "/settings/integrations", + icon: PuzzlePieceIcon, + match: (p) => p.startsWith("/settings/integrations"), + }, { name: "Secrets", href: "/settings/secrets",