Fix "Enter" bug

Fix Chinese input method "Enter" on Safari
This commit is contained in:
Raax 2024-03-16 21:55:16 +08:00
parent cc0eae7153
commit 028957fcdc
1 changed files with 2 additions and 0 deletions

View File

@ -219,6 +219,8 @@ function useSubmitHandler() {
}, []);
const shouldSubmit = (e: React.KeyboardEvent<HTMLTextAreaElement>) => {
// Fix Chinese input method "Enter" on Safari
if (e.keyCode == 229) return false;
if (e.key !== "Enter") return false;
if (e.key === "Enter" && (e.nativeEvent.isComposing || isComposing.current))
return false;