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;