style: Remove unnecessary console.log statement

This commit is contained in:
Gauthier Daniels 2025-04-18 15:41:52 +02:00
parent bbdbb1aec1
commit f26e06b433
2 changed files with 1 additions and 0 deletions

View File

@ -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]);