From fdab4db36636ee48fd9b697fc721e57ee4c681f9 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sat, 19 Oct 2024 06:52:41 +0530 Subject: [PATCH] chore: lint --- .../molecules/ActionDescriptionBox.tsx | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/components/molecules/ActionDescriptionBox.tsx b/src/components/molecules/ActionDescriptionBox.tsx index 9e05157b..a58bcb47 100644 --- a/src/components/molecules/ActionDescriptionBox.tsx +++ b/src/components/molecules/ActionDescriptionBox.tsx @@ -36,22 +36,22 @@ const ActionDescriptionBox = () => { if (getText) { return ( <> - Capture Text - Hover over the texts you want to extract and click to select them + Capture Text + Hover over the texts you want to extract and click to select them ) } else if (getScreenshot) { return ( <> - Capture Screenshot - Capture a partial or full page screenshot of the current page. + Capture Screenshot + Capture a partial or full page screenshot of the current page. ) } else if (getList) { return ( <> - Capture List - Hover over the list you want to extract. Once selected, you can hover over all texts inside the list you selected. Click to select them. + Capture List + Hover over the list you want to extract. Once selected, you can hover over all texts inside the list you selected. Click to select them. ) } else { @@ -63,14 +63,14 @@ const ActionDescriptionBox = () => { } } - return ( - - - - {renderActionDescription()} - - - ); + return ( + + + + {renderActionDescription()} + + + ); }; export default ActionDescriptionBox;