diff --git a/CHANGELOG.md b/CHANGELOG.md index f749867..a163c45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 3.7.12 + +- (Fix) Removed some logspam. + # 3.7.11 - (Fix) Restore styling of applicationV2 apps. diff --git a/esmodules/misc-hooks.js b/esmodules/misc-hooks.js index 434cba1..0dbfa63 100644 --- a/esmodules/misc-hooks.js +++ b/esmodules/misc-hooks.js @@ -9,8 +9,8 @@ Hooks.once("ready", () => { document.body.classList.remove("theme-light"); document.body.classList.remove("theme-dark"); - const uiTheme = lookupThemeAndSchemeForKey(theme); - const { dorakoUiTheme, colorScheme } = uiTheme; + // const uiTheme = lookupThemeAndSchemeForKey(theme); + // const { dorakoUiTheme, colorScheme } = uiTheme; // document.body.classList.add("theme-" + colorScheme); // This doesn't make sense, because there can be interface theme elements that are influenced, which do not use the UI theme });