From 082484fad1c4eb1497f6b154e40bd3f38e10aae6 Mon Sep 17 00:00:00 2001 From: Dorako Date: Sun, 8 Dec 2024 13:10:04 +0100 Subject: [PATCH] 3.7.12 --- CHANGELOG.md | 4 ++++ esmodules/misc-hooks.js | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) 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 });