fix(agent-office/LogTab): 최신 로그가 보이도록 스크롤을 맨 위로 이동

This commit is contained in:
2026-05-29 07:42:37 +09:00
parent d8dcf682c4
commit ecc1ab0954

View File

@@ -40,7 +40,7 @@ export default function LogTab({ agentId, refreshTrigger }) {
useEffect(() => {
if (scrollRef.current) {
scrollRef.current.scrollTop = scrollRef.current.scrollHeight;
scrollRef.current.scrollTop = 0;
}
}, [logs]);