From 62b9bbb2d1597393344dd2129187e142f8618215 Mon Sep 17 00:00:00 2001 From: Karishma Shukla Date: Fri, 27 Jun 2025 17:04:31 +0530 Subject: [PATCH] fix: inherit bg in dark mode --- src/components/dashboard/MainMenu.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/dashboard/MainMenu.tsx b/src/components/dashboard/MainMenu.tsx index a81c88fc..c6170100 100644 --- a/src/components/dashboard/MainMenu.tsx +++ b/src/components/dashboard/MainMenu.tsx @@ -40,7 +40,7 @@ export const MainMenu = ({ value = 'robots', handleChangeContent }: MainMenuProp color: theme.palette.mode === 'light' ? '#6C6C6C' : 'inherit', '&:hover': { color: theme.palette.mode === 'light' ? '#6C6C6C' : 'inherit', - backgroundColor: theme.palette.mode === 'light' ? '#f5f5f5' : 'rgba(255, 255, 255, 0.08)', + backgroundColor: theme.palette.mode === 'light' ? '#f5f5f5' : 'inherit', }, };