diff --git a/src/components/molecules/InterpretationLog.tsx b/src/components/molecules/InterpretationLog.tsx index 4ca87b5b..98cb153d 100644 --- a/src/components/molecules/InterpretationLog.tsx +++ b/src/components/molecules/InterpretationLog.tsx @@ -107,91 +107,91 @@ export const InterpretationLog: React.FC = ({ isOpen, se return ( - - - - - Output Data Preview - -
- - - - - {columns.length > 0 ? ( - columns.map((column) => ( - {column} - )) - ) : ( - No Data - )} - - - - {tableData.length > 0 ? ( - tableData.map((row, index) => ( - - {columns.map((column) => ( - {row[column]} - ))} + + + + + Output Data Preview + +
+ +
+ + + {columns.length > 0 ? ( + columns.map((column) => ( + {column} + )) + ) : ( + No Data + )} - )) - ) : ( - - - It looks like you have not selected anything for extraction yet. Once you do, the robot will show a preview of your selections here. - - - )} - -
-
-
-
- - - + + + {tableData.length > 0 ? ( + tableData.map((row, index) => ( + + {columns.map((column) => ( + {row[column]} + ))} + + )) + ) : ( + + + It looks like you have not selected anything for extraction yet. Once you do, the robot will show a preview of your selections here. + + + )} + + + +
+
+ + + ); } \ No newline at end of file