mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-03 20:40:48 +08:00
fixed zen mode not working
This commit is contained in:
parent
d2c88e26bc
commit
b5996ef4e9
1 changed files with 1 additions and 1 deletions
|
@ -296,7 +296,7 @@ export function updateWordElement(showError = !Config.blindMode) {
|
|||
let currentWord;
|
||||
wordAtIndex = document.querySelector("#words .word.active");
|
||||
currentWord = TestWords.words.getCurrent();
|
||||
if (!currentWord) return;
|
||||
if (!currentWord && Config.mode !== "zen") return;
|
||||
|
||||
let ret = "";
|
||||
|
||||
|
|
Loading…
Reference in a new issue