diff --git a/src/components/molecules/action-settings/enqueueLinks.tsx b/src/components/molecules/action-settings/enqueueLinks.tsx deleted file mode 100644 index 2c383d47..00000000 --- a/src/components/molecules/action-settings/enqueueLinks.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import React, { forwardRef, useImperativeHandle } from 'react'; -import { Stack, TextField } from "@mui/material"; -import { WarningText } from "../../atoms/texts"; -import WarningIcon from "@mui/icons-material/Warning"; -import InfoIcon from "@mui/icons-material/Info"; - -export const EnqueueLinksSettings = forwardRef((props, ref) => { - const [settings, setSettings] = React.useState(''); - useImperativeHandle(ref, () => ({ - getSettings() { - return settings; - } - })); - - return ( - - setSettings(e.target.value)} - /> - - - 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 - (in parallel if the maxConcurrency parameter is greater than 1). - - - ); -});