Remove the redundant "Currently" row from the overview

The big clock already shows the asleep/awake state prominently.
This commit is contained in:
Alexander Heldt
2026-07-12 16:02:22 +00:00
parent 2e817a086d
commit c1ece16347
2 changed files with 0 additions and 10 deletions
-9
View File
@@ -659,15 +659,6 @@
document.getElementById("last-sleep").textContent = lastSleep
? `${EVENT_LABELS[lastSleep.type]} at ${formatTime(lastSleep.at)} (${formatRelative(lastSleep.at)})`
: "—";
const row = document.getElementById("currently-row");
const currently = document.getElementById("currently");
if (currentSleepState(events).state === "asleep") {
row.hidden = false;
currently.textContent = "😴 Asleep";
} else {
row.hidden = true;
}
}
// Tracks the latest sleep transition so the 1-second tick can update the