From 558d629ab1a638a238368379b801d55b8dd85a8e Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Tue, 6 Aug 2024 02:23:33 +0530 Subject: [PATCH] chore: lint --- src/components/organisms/RightSidePanel.tsx | 54 ++++++++++----------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/src/components/organisms/RightSidePanel.tsx b/src/components/organisms/RightSidePanel.tsx index 2f728743..961f17a1 100644 --- a/src/components/organisms/RightSidePanel.tsx +++ b/src/components/organisms/RightSidePanel.tsx @@ -104,38 +104,38 @@ export const RightSidePanel = ({ pairForEdit }: RightSidePanelProps) => { )} - + { getText ? ( - {browserSteps.map(step => ( - - handleLabelChange(step.id, e.target.value)} - fullWidth - margin="normal" - error={!!errors[step.id]} - helperText={errors[step.id]} - InputProps={{ readOnly: confirmedSteps[step.id] }} - /> - - {!confirmedSteps[step.id] && ( - - - + {browserSteps.map(step => ( + + handleLabelChange(step.id, e.target.value)} + fullWidth + margin="normal" + error={!!errors[step.id]} + helperText={errors[step.id]} + InputProps={{ readOnly: confirmedSteps[step.id] }} + /> + + {!confirmedSteps[step.id] && ( + + + + + )} - )} + ))} - ))} - ) : null }