diff --git a/src/components/organisms/RightSidePanel.tsx b/src/components/organisms/RightSidePanel.tsx index c7ba1b9f..4a73287f 100644 --- a/src/components/organisms/RightSidePanel.tsx +++ b/src/components/organisms/RightSidePanel.tsx @@ -103,45 +103,45 @@ export const RightSidePanel = () => { )} - - {browserSteps.map(step => ( - - { - step.type === 'text' ? ( - <> - handleTextLabelChange(step.id, e.target.value)} - fullWidth - margin="normal" - error={!!errors[step.id]} - helperText={errors[step.id]} - InputProps={{ readOnly: confirmedTextSteps[step.id] }} - /> - - {!confirmedTextSteps[step.id] && ( - - - - - )} - - ) : ( - step.type === 'screenshot' && ( - {`Take ${step.fullPage ? 'Fullpage' : 'Visible Part'} Screenshot`} - ) - ) - } - - ))} + + {browserSteps.map(step => ( + + { + step.type === 'text' ? ( + <> + handleTextLabelChange(step.id, e.target.value)} + fullWidth + margin="normal" + error={!!errors[step.id]} + helperText={errors[step.id]} + InputProps={{ readOnly: confirmedTextSteps[step.id] }} + /> + + {!confirmedTextSteps[step.id] && ( + + + + + )} + + ) : ( + step.type === 'screenshot' && ( + {`Take ${step.fullPage ? 'Fullpage' : 'Visible Part'} Screenshot`} + ) + ) + } + ))} + ); };