From 0e3d430f41bfa0d3ee1514b71246dc9c0b14d7be Mon Sep 17 00:00:00 2001 From: amhsirak Date: Fri, 2 Jan 2026 11:38:16 +0530 Subject: [PATCH] chore: remove scrollToLogBottom() --- src/components/run/ColapsibleRow.tsx | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/components/run/ColapsibleRow.tsx b/src/components/run/ColapsibleRow.tsx index 67e82bf0..bf5116e5 100644 --- a/src/components/run/ColapsibleRow.tsx +++ b/src/components/run/ColapsibleRow.tsx @@ -54,12 +54,6 @@ export const CollapsibleRow = ({ row, handleDelete, isOpen, onToggleExpanded, cu const logEndRef = useRef(null); - const scrollToLogBottom = () => { - if (logEndRef.current) { - logEndRef.current.scrollIntoView({ behavior: "smooth" }); - } - } - const handleAbort = () => { abortRunHandler(row.runId, row.name, row.browserId); } @@ -67,12 +61,7 @@ export const CollapsibleRow = ({ row, handleDelete, isOpen, onToggleExpanded, cu const handleRowExpand = () => { const newOpen = !isOpen; onToggleExpanded(newOpen); - //scrollToLogBottom(); }; - - // useEffect(() => { - // scrollToLogBottom(); - // }, [currentLog]) useEffect(() => { const fetchUserEmail = async () => {