diff --git a/src/interface/web/app/components/chatInputArea/chatInputArea.tsx b/src/interface/web/app/components/chatInputArea/chatInputArea.tsx index 892850b9..0f8f498b 100644 --- a/src/interface/web/app/components/chatInputArea/chatInputArea.tsx +++ b/src/interface/web/app/components/chatInputArea/chatInputArea.tsx @@ -258,7 +258,7 @@ export default function ChatInputArea(props: ChatInputProps) { useEffect(() => { if (!chatInputRef.current) return; chatInputRef.current.style.height = 'auto'; - chatInputRef.current.style.height = Math.max(chatInputRef.current.scrollHeight-24, 64) + 'px'; + chatInputRef.current.style.height = Math.max(chatInputRef.current.scrollHeight - 24, 64) + 'px'; }, [message]); return ( @@ -398,7 +398,9 @@ export default function ChatInputArea(props: ChatInputProps) {