diff --git a/src/interface/web/app/components/chatInputArea/chatInputArea.tsx b/src/interface/web/app/components/chatInputArea/chatInputArea.tsx index 195abe1e..7f2baf1d 100644 --- a/src/interface/web/app/components/chatInputArea/chatInputArea.tsx +++ b/src/interface/web/app/components/chatInputArea/chatInputArea.tsx @@ -460,7 +460,7 @@ export const ChatInputArea = forwardRef((pr autoFocus={true} value={message} onKeyDown={(e) => { - if (e.key === "Enter" && !e.shiftKey) { + if (e.key === "Enter" && !e.shiftKey && !props.isMobileWidth) { setImageUploaded(false); setImagePaths([]); e.preventDefault();