From 64a2033e424ce4365b1f1ee55af50379cae84591 Mon Sep 17 00:00:00 2001 From: Miodec Date: Sat, 3 Jan 2026 22:09:01 +0100 Subject: [PATCH] yeet comment --- frontend/src/ts/test/test-timer.ts | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/frontend/src/ts/test/test-timer.ts b/frontend/src/ts/test/test-timer.ts index e30f6b393..c38a4e61f 100644 --- a/frontend/src/ts/test/test-timer.ts +++ b/frontend/src/ts/test/test-timer.ts @@ -191,31 +191,6 @@ function checkIfTimeIsUp(): void { if (timerDebug) console.timeEnd("times up check"); } -// function sendTribeProgress(wpm: number, raw: number, acc: number): void { -// if (timerDebug) console.time("tribe progress"); -// if (TribeState.getState() >= 10 && TribeState.getState() <= 21) { -// let progress = 0; -// if (Config.mode === "time") { -// progress = 100 - ((Time.get() + 1) / Config.time) * 100; -// } else { -// let outof = TestWords.words.length; -// if (Config.mode === "words") { -// outof = Config.words; -// } -// progress = Math.floor((TestWords.words.currentIndex / (outof - 1)) * 100); -// } -// TribeBars.sendUpdate(wpm, raw, acc, progress); -// if ( -// Time.get() >= 3 && -// TestInput.input.current === "" && -// TestInput.input.getHistory().length === 0 -// ) { -// TimerEvent.dispatch("finish"); -// } -// } -// if (timerDebug) console.timeEnd("tribe progress"); -// } - function playTimeWarning(): void { if (timerDebug) console.time("play timer warning");