You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the case of characters that need to go through the IME Composition stage, such as Korean, ArrowDown during input causes two onKeyDown events due to problems in the system and browser handling IME Composition, respectively.
Fortunately, react offers onCompositionStart and onCompositionEnd events, so we can modify them to prevent onKeyDown events from occurring during Composition.
The text was updated successfully, but these errors were encountered:
In the case of characters that need to go through the IME Composition stage, such as Korean, ArrowDown during input causes two onKeyDown events due to problems in the system and browser handling IME Composition, respectively.
Fortunately, react offers onCompositionStart and onCompositionEnd events, so we can modify them to prevent onKeyDown events from occurring during Composition.
The text was updated successfully, but these errors were encountered: