diff --git a/src/components/molecules/RunsTable.tsx b/src/components/molecules/RunsTable.tsx index 21837ed8..b45981fe 100644 --- a/src/components/molecules/RunsTable.tsx +++ b/src/components/molecules/RunsTable.tsx @@ -76,10 +76,10 @@ export const RunsTable = ( if (runs) { const parsedRows: Data[] = []; runs.map((run: any, index) => { - parsedRows.push({ - id: index, - ...run, - }); + parsedRows.push({ + id: index, + ...run, + }); }); setRows(parsedRows); } else { @@ -112,8 +112,8 @@ export const RunsTable = ( return ( - All Runs - + All Runs + {Object.entries(groupedRows).map(([name, group]) => (