Remove unused variable cleanDarkBackground

This commit is contained in:
2025-04-08 23:00:19 +02:00
parent 6535bf37ec
commit f0a401a9a4

View File

@@ -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 (
<div className="lg:hidden">
{/* overlay background */}