chore: lint

This commit is contained in:
karishmas6
2024-06-22 20:01:25 +05:30
parent 2e6f47069f
commit 947c73c521

View File

@@ -15,14 +15,14 @@ export const EnqueueLinksSettings = forwardRef((props, ref) => {
return ( return (
<Stack direction="column"> <Stack direction="column">
<TextField <TextField
sx={{marginLeft: '15px', marginRight: '15px'}} sx={{ marginLeft: '15px', marginRight: '15px' }}
type="string" type="string"
label="Selector" label="Selector"
required required
onChange={(e) => setSettings(e.target.value)} onChange={(e) => setSettings(e.target.value)}
/> />
<WarningText> <WarningText>
<InfoIcon color='warning'/> <InfoIcon color='warning' />
Reads elements targeted by the selector and stores their links in a queue. Reads elements targeted by the selector and stores their links in a queue.
Those pages are then processed using the same workflow as the initial page Those pages are then processed using the same workflow as the initial page
(in parallel if the maxConcurrency parameter is greater than 1). (in parallel if the maxConcurrency parameter is greater than 1).