From bff51857d6a205f00376cd147cd7479f6ef010e0 Mon Sep 17 00:00:00 2001 From: Alejandro Date: Mon, 12 Jan 2026 10:43:59 +0100 Subject: [PATCH] feat: message ux improvements (#52) * feat(chat): add Ctrl+Enter shortcut to send messages Allows users to send messages using Ctrl+Enter (or Cmd+Enter on Mac) in addition to the existing Enter key shortcut. * fix(chat): disable autofocus on message editor Prevents keyboard from popping up automatically on mobile devices. --------- Co-authored-by: Claude --- src/components/ChatViewer.tsx | 1 - src/components/editor/MentionEditor.tsx | 9 ++++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/components/ChatViewer.tsx b/src/components/ChatViewer.tsx index 63c80c8..4c71940 100644 --- a/src/components/ChatViewer.tsx +++ b/src/components/ChatViewer.tsx @@ -423,7 +423,6 @@ export function ChatViewer({ handleSend(content, replyTo); } }} - autoFocus className="flex-1 min-w-0" />