From f26e06b43346eb1006e957ae3e7e96658b01ecfb Mon Sep 17 00:00:00 2001 From: GauthierWebDev Date: Fri, 18 Apr 2025 15:41:52 +0200 Subject: [PATCH] style: Remove unnecessary console.log statement --- app/components/common/Cookies.tsx | 0 app/providers/ThemeProvider.tsx | 1 + 2 files changed, 1 insertion(+) delete mode 100644 app/components/common/Cookies.tsx diff --git a/app/components/common/Cookies.tsx b/app/components/common/Cookies.tsx deleted file mode 100644 index e69de29..0000000 diff --git a/app/providers/ThemeProvider.tsx b/app/providers/ThemeProvider.tsx index 4dfc2ea..8220459 100644 --- a/app/providers/ThemeProvider.tsx +++ b/app/providers/ThemeProvider.tsx @@ -18,6 +18,7 @@ export function ThemeProvider(props: ThemeProviderProps) { rootElement.classList.toggle("light", theme === "light"); if (cookies.consent.customization) { + console.log(`ThemeProvider: ${theme}`); // TODO: update the theme in the cookies } }, [theme]);