diff --git a/frontend/src/app/boards/[boardId]/page.tsx b/frontend/src/app/boards/[boardId]/page.tsx
index 0778e73..2a8874f 100644
--- a/frontend/src/app/boards/[boardId]/page.tsx
+++ b/frontend/src/app/boards/[boardId]/page.tsx
@@ -342,6 +342,7 @@ export default function BoardDetailPage() {
const [isCommentsLoading, setIsCommentsLoading] = useState(false);
const [commentsError, setCommentsError] = useState
- Tip: press Ctrl+Enter (or Cmd+Enter) to send. + Tip: press Enter to send. Shift+Enter for a newline.
) : ( @@ -479,15 +480,16 @@ export function BoardOnboardingChat({ value={otherText} onChange={(event) => setOtherText(event.target.value)} onKeyDown={(event) => { - if (!(event.ctrlKey || event.metaKey)) return; if (event.key !== "Enter") return; + if (event.nativeEvent.isComposing) return; + if (event.shiftKey) return; event.preventDefault(); if (loading) return; submitAnswer(); }} />- Tip: press Ctrl+Enter (or Cmd+Enter) to send. + Tip: press Enter to send. Shift+Enter for a newline.
) : null}