diff --git a/app/components/chat.tsx b/app/components/chat.tsx index 3d519dee722..6e03b7e8211 100644 --- a/app/components/chat.tsx +++ b/app/components/chat.tsx @@ -1098,7 +1098,7 @@ function _Chat() { e.preventDefault(); return; } - if (shouldSubmit(e) && promptHints.length === 0) { + if (!isMobileScreen && shouldSubmit(e) && promptHints.length === 0) { doSubmit(userInput); e.preventDefault(); }