From bda63a14bc2f1f99ecfac755a683e2e394ce9292 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Mon, 21 Oct 2024 15:57:51 +0530 Subject: [PATCH] chore: lint --- .../molecules/InterpretationLog.tsx | 38 +++++++++---------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/src/components/molecules/InterpretationLog.tsx b/src/components/molecules/InterpretationLog.tsx index d0cdec7d..83803271 100644 --- a/src/components/molecules/InterpretationLog.tsx +++ b/src/components/molecules/InterpretationLog.tsx @@ -164,28 +164,28 @@ export const InterpretationLog: React.FC = ({ isOpen, se > {tableData.length > 0 ? ( <> - - - - - {columns.map((column) => ( - {column} - ))} - - - - {tableData.slice(0, Math.min(5, tableData.length)).map((row, index) => ( - + +
+ + {columns.map((column) => ( - {row[column]} + {column} ))} - ))} - -
-
- Additional rows of data will be extracted once you finish recording. - + + + {tableData.slice(0, Math.min(5, tableData.length)).map((row, index) => ( + + {columns.map((column) => ( + {row[column]} + ))} + + ))} + + + + Additional rows of data will be extracted once you finish recording. + ) : (