diff --git a/gui/src/components/ComboBox.tsx b/gui/src/components/ComboBox.tsx index de2986b7f8..cb1aa36008 100644 --- a/gui/src/components/ComboBox.tsx +++ b/gui/src/components/ComboBox.tsx @@ -1107,6 +1107,11 @@ const ComboBox = React.forwardRef((props: ComboBoxProps, ref) => { setInputFocused(false); }, onKeyDown: (event) => { + // Prevent duplicate calls to keyDown events due to IME. + if (isComposing) { + return; + } + dispatch(setBottomMessage(undefined)); if (event.key === "Enter" && event.shiftKey) { // Prevent Downshift's default 'Enter' behavior.