fix for input blur on send/enter

This commit is contained in:
Roland Osborne 2024-01-03 23:38:39 -08:00
parent 8071db8f35
commit 00f55bba56

View File

@ -23,7 +23,6 @@ export function AddTopic({ contentKey }) {
const keyDown = (e) => { const keyDown = (e) => {
if (e.key === 'Enter' && !e.shiftKey) { if (e.key === 'Enter' && !e.shiftKey) {
msg.current.blur();
addTopic(); addTopic();
} }
} }