fix(ui): disable dynamic theme dropdown injection entirely

This commit is contained in:
Rodrigo Rodriguez 2026-02-18 21:19:28 +00:00
parent ea8003e213
commit 68bb516ec2

View file

@ -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");
}