From da2368aaaa222ddab864b5ae526a9fbf5b5de232 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sat, 19 Oct 2024 09:44:00 +0530 Subject: [PATCH] chore: revert --- src/pages/RecordingPage.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pages/RecordingPage.tsx b/src/pages/RecordingPage.tsx index 09e395b2..8e811c52 100644 --- a/src/pages/RecordingPage.tsx +++ b/src/pages/RecordingPage.tsx @@ -32,6 +32,7 @@ export const RecordingPage = ({ recordingName }: RecordingPageProps) => { pair: null, index: 0, }); + const [showOutputData, setShowOutputData] = useState(false); const browserContentRef = React.useRef(null); const workflowListRef = React.useRef(null); @@ -40,6 +41,9 @@ export const RecordingPage = ({ recordingName }: RecordingPageProps) => { const { setWidth } = useBrowserDimensionsStore(); const { browserId, setBrowserId, recordingId } = useGlobalInfoStore(); + const handleShowOutputData = useCallback(() => { + setShowOutputData(true); + }, []); const handleSelectPairForEdit = (pair: WhereWhatPair, index: number) => { setPairForEdit({