feat: remove unused state
This commit is contained in:
@@ -32,7 +32,6 @@ export const RecordingPage = ({ recordingName }: RecordingPageProps) => {
|
|||||||
pair: null,
|
pair: null,
|
||||||
index: 0,
|
index: 0,
|
||||||
});
|
});
|
||||||
const [showOutputData, setShowOutputData] = useState(false);
|
|
||||||
|
|
||||||
const browserContentRef = React.useRef<HTMLDivElement>(null);
|
const browserContentRef = React.useRef<HTMLDivElement>(null);
|
||||||
const workflowListRef = React.useRef<HTMLDivElement>(null);
|
const workflowListRef = React.useRef<HTMLDivElement>(null);
|
||||||
@@ -41,9 +40,6 @@ export const RecordingPage = ({ recordingName }: RecordingPageProps) => {
|
|||||||
const { setWidth } = useBrowserDimensionsStore();
|
const { setWidth } = useBrowserDimensionsStore();
|
||||||
const { browserId, setBrowserId, recordingId } = useGlobalInfoStore();
|
const { browserId, setBrowserId, recordingId } = useGlobalInfoStore();
|
||||||
|
|
||||||
const handleShowOutputData = useCallback(() => {
|
|
||||||
setShowOutputData(true);
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
const handleSelectPairForEdit = (pair: WhereWhatPair, index: number) => {
|
const handleSelectPairForEdit = (pair: WhereWhatPair, index: number) => {
|
||||||
setPairForEdit({
|
setPairForEdit({
|
||||||
|
|||||||
Reference in New Issue
Block a user