From 60d1aac72e0ac78fc62a8ea26fd7fffdaab5bad6 Mon Sep 17 00:00:00 2001 From: Miodec Date: Wed, 26 Nov 2025 17:52:24 +0100 Subject: [PATCH] fix: composition update not making sounds --- frontend/src/ts/test/test-ui.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/ts/test/test-ui.ts b/frontend/src/ts/test/test-ui.ts index e2ee27190..a56078b92 100644 --- a/frontend/src/ts/test/test-ui.ts +++ b/frontend/src/ts/test/test-ui.ts @@ -1641,7 +1641,7 @@ function afterAnyTestInput( type: "textInput" | "delete" | "compositionUpdate", correctInput: boolean | null ): void { - if (type === "textInput") { + if (type === "textInput" || type === "compositionUpdate") { if ( correctInput === true || Config.playSoundOnError === "off" ||