diff --git a/App/components/layout/sidebar.tsx b/App/components/layout/sidebar.tsx index 4ddc238..7c4da9d 100644 --- a/App/components/layout/sidebar.tsx +++ b/App/components/layout/sidebar.tsx @@ -56,9 +56,9 @@ const PURCHASING_STAFF: NavItem[] = [ // Manager / Admin catalogue management — Sites conditionally shown const PURCHASING_MGMT: NavItem[] = [ - { href: "/admin/vendors", label: "Vendors", icon: Store, roles: ["MANAGER", "ADMIN"] }, - { href: "/admin/products", label: "Items", icon: Package, roles: ["MANAGER", "ADMIN"] }, - { href: "/admin/vessels", label: "Cost Centres", icon: Ship, roles: ["MANAGER", "ADMIN"] }, + { href: "/inventory/vendors", label: "Vendors", icon: Store, roles: ["MANAGER", "ADMIN"] }, + { href: "/admin/products", label: "Items", icon: Package, roles: ["MANAGER", "ADMIN"] }, + { href: "/admin/vessels", label: "Cost Centres", icon: Ship, roles: ["MANAGER", "ADMIN"] }, ...(INVENTORY_ENABLED ? [{ href: "/admin/sites", label: "Sites", icon: MapPin, roles: ["MANAGER", "ADMIN"] as Role[] }] : []),