mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2026-01-10 17:34:24 +08:00
fix: zen mode jumping when first word has no letters
!nuf
This commit is contained in:
parent
c55901efef
commit
75236f1d5d
1 changed files with 3 additions and 0 deletions
|
|
@ -774,6 +774,9 @@ export async function updateActiveWordLetters(
|
|||
ret += `<letter class="correct">${char}</letter>`;
|
||||
}
|
||||
}
|
||||
if (TestInput.input.current === "") {
|
||||
ret += `<letter>ㅤ</letter>`;
|
||||
}
|
||||
} else {
|
||||
let correctSoFar = false;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue