From 781d9c49b921d56c0b1583329417b4fa82e96fc8 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Tue, 11 Aug 2026 17:08:00 -0700 Subject: [PATCH] Keep timer function defined after firing. --- src/lib/vault/vault-timer.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/vault/vault-timer.ts b/src/lib/vault/vault-timer.ts index fa324b3..b596b5c 100644 --- a/src/lib/vault/vault-timer.ts +++ b/src/lib/vault/vault-timer.ts @@ -21,7 +21,6 @@ export class VaultTimer { clearTimeout(this.#timeout) clearInterval(this.#ticker) f() - this.#f = () => void 0 } this.#start = performance.mark('vault-timer-start') this.#end = performance.mark('vault-timer-end', { startTime: performance.now() + t }) -- 2.52.0