From b96e342e80781d3b29ea5120f0452ece8ad732aa Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Thu, 24 Oct 2024 01:18:07 +0530 Subject: [PATCH] chore: lint --- src/components/molecules/RunsTable.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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]) => (