IME composition
React
open
llmchat: ignore the Enter that confirms IME composition in the chat input
fix: ignore Enter that confirms IME composition in chat input
llmchat · trendy-design/llmchat
Symptom
CJK users pressing Enter to accept an IME candidate also submits the chat message, sending an empty or partial message.
Minimal repro
Type Japanese in llmchat chat input using IME; press Enter to select a candidate; message sends immediately.
Fix
Guard Enter keydown handler with if (event.isComposing || event.nativeEvent?.isComposing) return.