From c2b35a216a9f8943e02c9c9cb21826e8733eaf28 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Wed, 24 Jul 2024 21:25:13 +0530 Subject: [PATCH] chore: lint --- src/components/organisms/RightSidePanel.tsx | 54 +++++++++++---------- 1 file changed, 29 insertions(+), 25 deletions(-) diff --git a/src/components/organisms/RightSidePanel.tsx b/src/components/organisms/RightSidePanel.tsx index 0531e939..76cdb238 100644 --- a/src/components/organisms/RightSidePanel.tsx +++ b/src/components/organisms/RightSidePanel.tsx @@ -14,7 +14,7 @@ interface RightSidePanelProps { pairForEdit: PairForEdit; } -export const RightSidePanel = ({pairForEdit}: RightSidePanelProps) => { +export const RightSidePanel = ({ pairForEdit }: RightSidePanelProps) => { const [content, setContent] = useState('action'); const [action, setAction] = React.useState(''); @@ -56,34 +56,38 @@ export const RightSidePanel = ({pairForEdit}: RightSidePanelProps) => { {content === 'action' ? ( - - Type of action: - - - click on coordinates - enqueueLinks - scrape - scrapeSchema - screenshot - script - scroll - - + + Type of action: + + + click on coordinates + enqueueLinks + scrape + scrapeSchema + screenshot + script + scroll + + - {isSettingsDisplayed && - - } - - ) + {isSettingsDisplayed && + + } + + ) : null } - - + + ); };