[FEAT] Improve autoscroll during message streaming (#1139)

emulate chatgpt autoscroll to not always force autoscroll when streaming responses
This commit is contained in:
Sean Hatfield
2024-04-22 15:06:48 -07:00
committed by GitHub
parent 897e168fd1
commit b50f1e7479

View File

@@ -14,7 +14,7 @@ export default function ChatHistory({ history = [], workspace, sendCommand }) {
const chatHistoryRef = useRef(null);
useEffect(() => {
scrollToBottom();
if (isAtBottom) scrollToBottom();
}, [history]);
const handleScroll = () => {