diff --git a/frontend/src/ts/controllers/input-controller.ts b/frontend/src/ts/controllers/input-controller.ts index 7cd5811d1..ce69932a6 100644 --- a/frontend/src/ts/controllers/input-controller.ts +++ b/frontend/src/ts/controllers/input-controller.ts @@ -431,18 +431,6 @@ async function handleChar( return; } - if (char === "œ" && TestWords.words.getCurrent()[charIndex] !== "œ") { - await handleChar("o", charIndex); - await handleChar("e", charIndex + 1); - return; - } - - if (char === "æ" && TestWords.words.getCurrent()[charIndex] !== "æ") { - await handleChar("a", charIndex); - await handleChar("e", charIndex + 1); - return; - } - console.debug("Handling char", char, charIndex, realInputValue); const now = performance.now();