From 32ab2280a35ea8a8ab2310f7e079f9e1eb43a017 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Fri, 10 Jan 2025 12:40:26 +0530 Subject: [PATCH] feat: set output as default tab for run --- src/components/run/RunContent.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/run/RunContent.tsx b/src/components/run/RunContent.tsx index c5086a1bc..fa1813197 100644 --- a/src/components/run/RunContent.tsx +++ b/src/components/run/RunContent.tsx @@ -25,7 +25,7 @@ interface RunContentProps { export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRef, abortRunHandler }: RunContentProps) => { const { t } = useTranslation(); - const [tab, setTab] = React.useState('log'); + const [tab, setTab] = React.useState('output'); const [tableData, setTableData] = useState([]); const [columns, setColumns] = useState([]);