Remove appHasDarkClass function

This commit is contained in:
2026-05-17 20:38:19 +02:00
parent cd67bf486f
commit 555bdb0cfb
2 changed files with 3 additions and 8 deletions
@@ -32,13 +32,8 @@ export const useColorTheme = function () {
localStorage.setItem('theme', actualNewTheme);
};
const appHasDarkClass = function (colorTheme) {
return colorTheme === 'dark';
};
return {
getColorTheme,
updateColorTheme,
appHasDarkClass
updateColorTheme
};
};