diff --git a/client/src/components/Chat/Input/ChatForm.tsx b/client/src/components/Chat/Input/ChatForm.tsx index 72e04091f5..c66f82965d 100644 --- a/client/src/components/Chat/Input/ChatForm.tsx +++ b/client/src/components/Chat/Input/ChatForm.tsx @@ -132,6 +132,7 @@ const ChatForm = memo(({ index = 0 }: { index?: number }) => { const onSubmit = methods.handleSubmit((data: { text: string }) => { submitMessage(data); + // On touch-screen devices, blur the text area to dismiss the on-screen keyboard if (isTouchScreen) { textAreaRef.current?.blur(); }