Remove unused variable cleanDarkBackground

This commit is contained in:
2025-04-04 20:32:34 +02:00
parent 1867d10b78
commit 6882e6b460

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 */}