Fix scrolling to bottom problem

This commit is contained in:
yangdx
2025-04-22 21:25:15 +08:00
parent 2bfef70960
commit f53115aaa1

View File

@@ -60,6 +60,11 @@ export default function RetrievalTesting() {
// Add messages to chatbox
setMessages([...prevMessages, userMessage, assistantMessage])
// Force scroll to bottom after messages are rendered
setTimeout(() => {
scrollToBottom(true)
}, 0)
// Clear input and set loading
setInputValue('')