diff --git a/static/js/conversations.js b/static/js/conversations.js index 7695e23..020f2e4 100644 --- a/static/js/conversations.js +++ b/static/js/conversations.js @@ -1219,16 +1219,7 @@ }, }); - // Enter = send, Shift+Enter = newline (override via DOM keydown) - state.quill.root.addEventListener('keydown', function (e) { - if (e.key === 'Enter' && !e.shiftKey) { - e.preventDefault(); - e.stopPropagation(); - e.stopImmediatePropagation(); - Composer.send(); - return false; - } - }); + // Enter handled by Quill keyboard binding above (no duplicate DOM listener) // Typing indicator state.quill.on('text-change', function () {