diff --git a/src/components/molecules/InterpretationLog.tsx b/src/components/molecules/InterpretationLog.tsx index abfaa42f..53e3574d 100644 --- a/src/components/molecules/InterpretationLog.tsx +++ b/src/components/molecules/InterpretationLog.tsx @@ -169,33 +169,33 @@ export const InterpretationLog: React.FC = ({ isOpen, se columns.map((column) => ( {column} )) - ) : "" } + ) : ""} - {tableData.length > 0 ? ( - tableData.map((row, index) => ( - + {tableData.length > 0 ? ( + tableData.map((row, index) => ( + {columns.map((column) => ( {row[column]} ))} - - )) - ) : ( - hasScrapeListAction || hasScrapeSchemaAction || hasScreenshotAction ? ( - <> - - You've successfully trained the robot to perform actions! Click on the button below to get a preview of data your robot will extract. - - - - ) : ( + + )) + ) : ( + hasScrapeListAction || hasScrapeSchemaAction || hasScreenshotAction ? ( + <> - It looks like you have not selected anything for extraction yet. Once you do, the robot will show a preview of your selections here. + You've successfully trained the robot to perform actions! Click on the button below to get a preview of data your robot will extract. - ) - )} + + + ) : ( + + It looks like you have not selected anything for extraction yet. Once you do, the robot will show a preview of your selections here. + + ) + )}