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. + ) : (