diff --git a/components/Navbar/MobileNav.tsx b/components/Navbar/MobileNav.tsx index 89448ca..2d9ed07 100644 --- a/components/Navbar/MobileNav.tsx +++ b/components/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 (
{/* overlay background */}