From 9bbc97b9bdd90357b9ebdcd6c7fd4a47ced08c19 Mon Sep 17 00:00:00 2001 From: Hardik Date: Sun, 31 May 2026 06:10:42 +0530 Subject: [PATCH] feat(sidebar): add Items (/admin/products) to Administration for Manager Co-Authored-By: Claude Sonnet 4.6 --- App/components/layout/sidebar.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/App/components/layout/sidebar.tsx b/App/components/layout/sidebar.tsx index 7c4da9d..5641f5f 100644 --- a/App/components/layout/sidebar.tsx +++ b/App/components/layout/sidebar.tsx @@ -69,7 +69,8 @@ const PURCHASING_ITEMS: NavItem[] = [...PURCHASING_STAFF, ...PURCHASING_MGMT]; // ── Administration section ──────────────────────────────────────────────────── // Vendors shown to MANAGER / ACCOUNTS under their own Administration header const MANAGER_ADMIN_ITEMS: NavItem[] = [ - { href: "/admin/vendors", label: "Vendors", icon: Store, roles: ["MANAGER", "ACCOUNTS", "ADMIN"] }, + { href: "/admin/vendors", label: "Vendors", icon: Store, roles: ["MANAGER", "ACCOUNTS", "ADMIN"] }, + { href: "/admin/products", label: "Items", icon: Package, roles: ["MANAGER", "ADMIN"] }, ]; // Full Administration section (ADMIN only)