diff --git a/src/assistant/Conversations/ConversationBar.jsx b/src/assistant/Conversations/ConversationBar.jsx index 341cfe31b..eb7222c12 100644 --- a/src/assistant/Conversations/ConversationBar.jsx +++ b/src/assistant/Conversations/ConversationBar.jsx @@ -25,6 +25,7 @@ const ConversationBar = ({ assistantStatus }) => { // to adjust input height for multiline when typing in it useEventListener(inputRef.current, 'input', () => { + inputRef.current.style.height = 'auto' // to resize input when emptying it inputRef.current.style.height = `${inputRef.current.scrollHeight}px` })