From fac1eab6588599e0e2277fa79c71041136c71d8d Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sat, 19 Oct 2024 18:44:52 +0530 Subject: [PATCH] feat: remove setShowOutputData prop --- src/components/organisms/RightSidePanel.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/organisms/RightSidePanel.tsx b/src/components/organisms/RightSidePanel.tsx index 0fbce8e1..425a9161 100644 --- a/src/components/organisms/RightSidePanel.tsx +++ b/src/components/organisms/RightSidePanel.tsx @@ -40,10 +40,9 @@ 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, setShowOutputData }) => { +export const RightSidePanel: React.FC = ({ onFinishCapture }) => { const [workflow, setWorkflow] = useState(emptyWorkflow); const [textLabels, setTextLabels] = useState<{ [id: string]: string }>({}); const [errors, setErrors] = useState<{ [id: string]: string }>({});