diff --git a/src/components/organisms/RightSidePanel.tsx b/src/components/organisms/RightSidePanel.tsx index df74c306..7020b0b0 100644 --- a/src/components/organisms/RightSidePanel.tsx +++ b/src/components/organisms/RightSidePanel.tsx @@ -42,20 +42,7 @@ export const RightSidePanel = ({ pairForEdit }: RightSidePanelProps) => { setIsSettingsDisplayed(true); }; - // const confirmStep = () => { - // setBrowserSteps([ - // ...browserSteps, - // { id: Date.now(), label: stepLabel, description: stepDescription } - // ]); - // setStepLabel(''); - // setStepDescription(''); - // }; - - // const discardStep = () => { - // setStepLabel(''); - // setStepDescription(''); - // }; - + const handleLabelChange = (id: number, label: string) => { setLabels(prevLabels => ({ ...prevLabels, [id]: label })); };