Fix pinned today page and webhook

This commit is contained in:
2026-02-16 17:18:53 -05:00
parent c5ddf68ea1
commit ca3fbe4149
2 changed files with 79 additions and 5 deletions

View File

@ -60,7 +60,8 @@
}
}
const saved = localStorage.getItem(key);
const urlTheme = new URLSearchParams(window.location.search).get("theme");
const saved = urlTheme || localStorage.getItem(key);
applyTheme(saved === "dark" ? "dark" : "light");
btn.addEventListener("click", function () {