diff --git a/src/components/organisms/RightSidePanel.tsx b/src/components/organisms/RightSidePanel.tsx index 4aaba0ab..e32b1a58 100644 --- a/src/components/organisms/RightSidePanel.tsx +++ b/src/components/organisms/RightSidePanel.tsx @@ -40,9 +40,10 @@ const fetchWorkflow = (id: string, callback: (response: WorkflowFile) => void) = // 2. Handle non custom action steps interface RightSidePanelProps { onFinishCapture: () => void; + setShowOutputData: (show: boolean) => void; } -export const RightSidePanel: React.FC = ({ onFinishCapture }) => { +export const RightSidePanel: React.FC = ({ onFinishCapture, setShowOutputData }) => { const [workflow, setWorkflow] = useState(emptyWorkflow); const [textLabels, setTextLabels] = useState<{ [id: string]: string }>({}); const [errors, setErrors] = useState<{ [id: string]: string }>({}); @@ -388,7 +389,7 @@ export const RightSidePanel: React.FC = ({ onFinishCapture { hasScrapeListAction || hasScrapeSchemaAction || hasScreenshotAction ? ( - + ) : "" }