fix(input-controller): update keymap UI on backspace in layout emulator (@47th) (#6675)

### Description

Fixes the keymap UI not highlighting the current letter to be typed when
backspaced to a previous word in layout emulator.



https://github.com/user-attachments/assets/12ba72d8-567b-4097-bbf6-407814140545
This commit is contained in:
47th 2025-07-01 16:55:35 +05:30 committed by GitHub
parent 1ace28da4e
commit 0f4d311c7c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1335,6 +1335,7 @@ $("#wordsInput").on("input", (event) => {
inputValue.length >= currTestInput.length
) {
setWordsInput(" " + currTestInput);
updateUI();
return;
}