diff --git a/frontend/src/ts/test/caret.ts b/frontend/src/ts/test/caret.ts index f126d1cd1..2eab0e7ee 100644 --- a/frontend/src/ts/test/caret.ts +++ b/frontend/src/ts/test/caret.ts @@ -17,7 +17,7 @@ export function stopAnimation(): void { export function startAnimation(): void { if (caretAnimating === false) { - if (Config.smoothCaret && !SlowTimer.get()) { + if (Config.smoothCaret !== "off" && !SlowTimer.get()) { caret.css("animation-name", "caretFlashSmooth"); } else { caret.css("animation-name", "caretFlashHard");