diff --git a/src/components/molecules/ActionDescriptionBox.tsx b/src/components/molecules/ActionDescriptionBox.tsx index 2b6ca1ff..b0e0f343 100644 --- a/src/components/molecules/ActionDescriptionBox.tsx +++ b/src/components/molecules/ActionDescriptionBox.tsx @@ -1,6 +1,7 @@ import React, { ReactNode } from 'react'; import styled from 'styled-components'; import { PaginationType, useActionContext, LimitType } from '../../context/browserActions'; +import Typography from "@mui/material/Typography"; const CustomBoxContainer = styled.div` position: relative; @@ -33,7 +34,12 @@ const ActionDescriptionBox = () => { const renderActionDescription = () => { if (getText) { - return

Getting text...

; + return ( + <> + Capture Text + Hover over the texts you want to extract and click to select them + + ) } else if (getScreenshot) { return

Getting screenshot...

; } else if (getList) {