From f0a401a9a42b0b56f3bd58cf36381bf78252e9c8 Mon Sep 17 00:00:00 2001 From: Thatsaphorn Atchariyaphap Date: Tue, 8 Apr 2025 23:00:19 +0200 Subject: [PATCH] Remove unused variable `cleanDarkBackground` --- components/Navbar/MobileNav.tsx | 3 --- 1 file changed, 3 deletions(-) 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 */}