From 68bb516ec2b3739742ea8873c5fa95c033b178ba Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Wed, 18 Feb 2026 21:19:28 +0000 Subject: [PATCH] fix(ui): disable dynamic theme dropdown injection entirely --- ui/suite/js/theme-manager.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ui/suite/js/theme-manager.js b/ui/suite/js/theme-manager.js index 2fe2264..34e2ba1 100644 --- a/ui/suite/js/theme-manager.js +++ b/ui/suite/js/theme-manager.js @@ -169,8 +169,7 @@ const ThemeManager = (() => { } function updateDropdown() { - const dd = document.getElementById("themeDropdown"); - if (dd) dd.value = currentThemeId; + // Dropdown removed } function createDropdown() { @@ -211,8 +210,9 @@ const ThemeManager = (() => { currentThemeId = saved; loadTheme(saved); - const container = document.getElementById("themeSelectorContainer"); - if (container) container.appendChild(createDropdown()); + // Dropdown injection removed + // const container = document.getElementById("themeSelectorContainer"); + // if (container) container.appendChild(createDropdown()); console.log("✓ Theme Manager initialized"); }