diff --git a/src/components/molecules/InterpretationLog.tsx b/src/components/molecules/InterpretationLog.tsx index 042ceaf5..abfaa42f 100644 --- a/src/components/molecules/InterpretationLog.tsx +++ b/src/components/molecules/InterpretationLog.tsx @@ -169,19 +169,18 @@ export const InterpretationLog: React.FC = ({ isOpen, se columns.map((column) => ( {column} )) - ) : ( - No Data - )} + ) : "" } - {tableData.length > 0 ? ( tableData.map((row, index) => ( + {columns.map((column) => ( {row[column]} ))} + )) ) : ( hasScrapeListAction || hasScrapeSchemaAction || hasScreenshotAction ? ( @@ -197,7 +196,6 @@ export const InterpretationLog: React.FC = ({ isOpen, se ) )} -