feat(web): order Models above Integrations in settings nav

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Bryan Helmkamp 2026-05-20 21:01:45 -04:00
parent 732d57483b
commit 4bc278de39
No known key found for this signature in database

View file

@ -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",