Fix: When large models output data rapidly, the scrollbar cannot remain at the bottom. #12701 (#12702)

### What problem does this PR solve?



### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
balibabu
2026-01-19 19:09:41 +08:00
committed by GitHub
parent 4fbaa4aae9
commit 05da2a5872
3 changed files with 4 additions and 4 deletions

View File

@@ -409,7 +409,7 @@ export const useScrollToBottom = (
const container = containerRef.current;
container.scrollTo({
top: container.scrollHeight - container.clientHeight,
behavior: 'smooth',
behavior: 'auto',
});
}
}, [containerRef]);