diff --git a/frontend/src/scripts/controllers/input-controller.ts b/frontend/src/scripts/controllers/input-controller.ts index 0fd67d9a1..1df462b4e 100644 --- a/frontend/src/scripts/controllers/input-controller.ts +++ b/frontend/src/scripts/controllers/input-controller.ts @@ -54,7 +54,6 @@ function updateUI(): void { .getCurrent() .charAt(TestInput.input.current.length) .toString() - .toUpperCase() ); } } @@ -128,7 +127,6 @@ function handleSpace(): void { .getCurrent() .charAt(TestInput.input.current.length) .toString() - .toUpperCase() ); Settings.groups["layout"]?.updateInput(); } diff --git a/frontend/src/scripts/test/test-logic.ts b/frontend/src/scripts/test/test-logic.ts index 5bbbe7e12..b89ad9c87 100644 --- a/frontend/src/scripts/test/test-logic.ts +++ b/frontend/src/scripts/test/test-logic.ts @@ -502,7 +502,6 @@ export function restart( TestInput.input.current.length + 1 ) .toString() - .toUpperCase() ); } Funbox.toggleScript(TestWords.words.getCurrent()); @@ -568,7 +567,6 @@ export function restart( TestInput.input.current.length + 1 ) .toString() - .toUpperCase() ); } @@ -1006,7 +1004,6 @@ export async function init(): Promise { TestInput.input.current.length + 1 ) .toString() - .toUpperCase() ); } Funbox.toggleScript(TestWords.words.getCurrent());