mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-06 08:18:58 +00:00
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:
parent
732d57483b
commit
4bc278de39
1 changed files with 6 additions and 6 deletions
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue