From a67d9624f01a686273f0788621c15939c018dd00 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Mon, 5 Aug 2024 22:46:16 +0530 Subject: [PATCH] chore: remove unused action states --- src/components/organisms/RightSidePanel.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/components/organisms/RightSidePanel.tsx b/src/components/organisms/RightSidePanel.tsx index a790675c..72b309f4 100644 --- a/src/components/organisms/RightSidePanel.tsx +++ b/src/components/organisms/RightSidePanel.tsx @@ -17,9 +17,6 @@ interface RightSidePanelProps { } export const RightSidePanel = ({ pairForEdit }: RightSidePanelProps) => { - const [content, setContent] = useState('action'); - const [action, setAction] = useState(''); - const [isSettingsDisplayed, setIsSettingsDisplayed] = useState(false); const [labels, setLabels] = useState<{ [id: number]: string }>({}); const [errors, setErrors] = useState<{ [id: number]: string }>({}); const [confirmedSteps, setConfirmedSteps] = useState<{ [id: number]: boolean }>({});