From 6882e6b46067ca9f240ddeb2aedefb8c0f4d9e07 Mon Sep 17 00:00:00 2001 From: Thatsaphorn Atchariyaphap Date: Fri, 4 Apr 2025 20:32:34 +0200 Subject: [PATCH] Remove unused variable cleanDarkBackground --- components/Home/Navbar/MobileNav.tsx | 3 --- 1 file changed, 3 deletions(-) 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 (
{/* overlay background */}