chore: lint

This commit is contained in:
karishmas6
2024-10-19 06:52:41 +05:30
parent 5b0082fc48
commit fdab4db366

View File

@@ -36,22 +36,22 @@ const ActionDescriptionBox = () => {
if (getText) { if (getText) {
return ( return (
<> <>
<Typography variant="h6" gutterBottom>Capture Text</Typography> <Typography variant="h6" gutterBottom>Capture Text</Typography>
<Typography variant="body1" gutterBottom>Hover over the texts you want to extract and click to select them</Typography> <Typography variant="body1" gutterBottom>Hover over the texts you want to extract and click to select them</Typography>
</> </>
) )
} else if (getScreenshot) { } else if (getScreenshot) {
return ( return (
<> <>
<Typography variant="h6" gutterBottom>Capture Screenshot</Typography> <Typography variant="h6" gutterBottom>Capture Screenshot</Typography>
<Typography variant="body1" gutterBottom>Capture a partial or full page screenshot of the current page. </Typography> <Typography variant="body1" gutterBottom>Capture a partial or full page screenshot of the current page. </Typography>
</> </>
) )
} else if (getList) { } else if (getList) {
return ( return (
<> <>
<Typography variant="h6" gutterBottom>Capture List</Typography> <Typography variant="h6" gutterBottom>Capture List</Typography>
<Typography variant="body1" gutterBottom>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. </Typography> <Typography variant="body1" gutterBottom>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. </Typography>
</> </>
) )
} else { } else {
@@ -63,14 +63,14 @@ const ActionDescriptionBox = () => {
} }
} }
return ( return (
<CustomBoxContainer> <CustomBoxContainer>
<Triangle /> <Triangle />
<Content> <Content>
{renderActionDescription()} {renderActionDescription()}
</Content> </Content>
</CustomBoxContainer> </CustomBoxContainer>
); );
}; };
export default ActionDescriptionBox; export default ActionDescriptionBox;