From 47538844752d15a81268e6cc6ace3ce2a5ccbfda Mon Sep 17 00:00:00 2001 From: Miodec Date: Fri, 30 Jan 2026 16:02:32 +0100 Subject: [PATCH] fix: progress always visible in zen mode --- frontend/src/ts/test/timer-progress.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/ts/test/timer-progress.ts b/frontend/src/ts/test/timer-progress.ts index a1fe882caa08..1937f1c37582 100644 --- a/frontend/src/ts/test/timer-progress.ts +++ b/frontend/src/ts/test/timer-progress.ts @@ -54,7 +54,7 @@ export function show(): void { textEl.classList.remove("hidden"); }, }); - } else if (Config.mode === "zen" || Config.timerStyle === "mini") { + } else if (Config.timerStyle === "mini") { animate(miniEl, { opacity: [0, 1], duration: applyReducedMotion(125),