diff --git a/apps/web/components/chat/index.tsx b/apps/web/components/chat/index.tsx index af21ddfa..17666d42 100644 --- a/apps/web/components/chat/index.tsx +++ b/apps/web/components/chat/index.tsx @@ -364,7 +364,7 @@ export function ChatSidebar({ ) const handleKeyDown = (e: React.KeyboardEvent) => { - if (e.key === "Enter" && !e.shiftKey) { + if (e.key === "Enter" && !e.shiftKey && !isMobile) { e.preventDefault() handleSend() }