mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-12-11 13:57:28 +08:00
ignoring accuracy only on non korean words (korean is handled differently) #3634
This commit is contained in:
parent
54de09578f
commit
56990f776e
1 changed files with 2 additions and 1 deletions
|
|
@ -492,7 +492,8 @@ function handleChar(
|
|||
if (
|
||||
!thisCharCorrect &&
|
||||
// Misc.trailingComposeChars.test(resultingWord) &&
|
||||
CompositionState.getComposing()
|
||||
CompositionState.getComposing() &&
|
||||
!Config.language.startsWith("korean")
|
||||
) {
|
||||
TestInput.input.current = resultingWord;
|
||||
TestUI.updateWordElement();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue