diff --git a/frontend/src/ts/controllers/input-controller.ts b/frontend/src/ts/controllers/input-controller.ts index 1d53b85ed..2c405aa4a 100644 --- a/frontend/src/ts/controllers/input-controller.ts +++ b/frontend/src/ts/controllers/input-controller.ts @@ -211,7 +211,7 @@ function handleSpace(): void { void MonkeyPower.addPower(isWordCorrect, true); TestInput.incrementAccuracy(isWordCorrect); if (isWordCorrect) { - if (Config.indicateTypos !== "off" && Config.stopOnError === "letter") { + if (Config.stopOnError === "letter") { void TestUI.updateWordElement(); } PaceCaret.handleSpace(true, currentWord); @@ -643,9 +643,7 @@ function handleChar( Config.stopOnError === "letter" && !thisCharCorrect ) { - if (Config.indicateTypos !== "off") { - void TestUI.updateWordElement(undefined, TestInput.input.current + char); - } + void TestUI.updateWordElement(undefined, TestInput.input.current + char); return; }