From 60cb5c810202cc04a32240a867f0311f4f2c87f2 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sat, 19 Oct 2024 09:43:30 +0530 Subject: [PATCH] feat: remove unused state --- src/pages/RecordingPage.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/pages/RecordingPage.tsx b/src/pages/RecordingPage.tsx index 8e811c52..09e395b2 100644 --- a/src/pages/RecordingPage.tsx +++ b/src/pages/RecordingPage.tsx @@ -32,7 +32,6 @@ export const RecordingPage = ({ recordingName }: RecordingPageProps) => { pair: null, index: 0, }); - const [showOutputData, setShowOutputData] = useState(false); const browserContentRef = React.useRef(null); const workflowListRef = React.useRef(null); @@ -41,9 +40,6 @@ 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({