Remove phase pill from top bar

This commit is contained in:
2026-02-06 23:37:26 +01:00
parent f1797e18d1
commit b7dfb10522
3 changed files with 2 additions and 4 deletions

View File

@@ -93,9 +93,6 @@ export function handleAuthError(err, clearUserState) {
}
export function renderPhasePill() {
const phaseKey = typeof state.phase === "string" ? state.phase.toLowerCase() : null;
const pill = $("phase-pill");
if (pill) pill.textContent = phaseKey ? t(`phase.${phaseKey}`) : t("phase.loading");
document.querySelectorAll(".phase-view").forEach((el) =>
el.classList.add("hidden"),
);