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 () => {