From a6fcf31f4bf1c6c6e26db5576afc8d880a4a4a74 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sat, 19 Oct 2024 19:21:43 +0530 Subject: [PATCH] chore: prettier --- .../molecules/InterpretationLog.tsx | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) 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. + + ) + )}