From fc12833ae58de05530478617fcb48bc6ca38edff Mon Sep 17 00:00:00 2001 From: Nawaz Dhandala Date: Fri, 9 Jan 2026 08:46:21 +0000 Subject: [PATCH] fix: update iconColor prop type to include undefined --- Common/UI/Components/Navbar/NavBarMenuItem.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/UI/Components/Navbar/NavBarMenuItem.tsx b/Common/UI/Components/Navbar/NavBarMenuItem.tsx index a2d0db736f..cb3a712764 100644 --- a/Common/UI/Components/Navbar/NavBarMenuItem.tsx +++ b/Common/UI/Components/Navbar/NavBarMenuItem.tsx @@ -10,7 +10,7 @@ export interface ComponentProps { icon: IconProp; description: string; onClick: () => void; - iconColor?: string; // Tailwind color name like "blue", "purple", "amber" + iconColor?: string | undefined; // Tailwind color name like "blue", "purple", "amber" } const NavBarMenuItem: FunctionComponent = (