diff --git a/components/Home/Navbar/MobileNav.tsx b/components/Home/Navbar/MobileNav.tsx index 731fb14..331b6ff 100644 --- a/components/Home/Navbar/MobileNav.tsx +++ b/components/Home/Navbar/MobileNav.tsx @@ -14,9 +14,6 @@ const MobileNav = ({closeNav, showNav}: Props) => { const navOpen = showNav ? "translate-y-0 opacity-100" : "-translate-y-20 opacity-0 pointer-events-none"; const {theme, toggleTheme} = useContext(ThemeContext); const colors = themeColors[theme]; - - const cleanDarkBackground = theme === "dark" ? "#2A2A2A" : colors.primaryBg; - return (