diff --git a/src/components/molecules/InterpretationLog.tsx b/src/components/molecules/InterpretationLog.tsx index 029744d4..d190af35 100644 --- a/src/components/molecules/InterpretationLog.tsx +++ b/src/components/molecules/InterpretationLog.tsx @@ -184,12 +184,18 @@ export const InterpretationLog: React.FC = ({ isOpen, se )) ) : ( - <> - - It looks like you have not selected anything for extraction yet. Once you do, the robot will show a preview of your selections here. - - - + hasScrapeListAction || hasScrapeSchemaAction || hasScreenshotAction ? ( + <> + + You've successfully trained the robot to perform actions. Click on the Get Output Data Preview to show a preview of data extraction. + + + + ) : ( + + "It looks like you have not selected anything for extraction yet. Once you do, the robot will show a preview of your selections here." + + ) )}