diff --git a/client/src/components/WebsiteForm.tsx b/client/src/components/WebsiteForm.tsx index 8f62172..940e931 100644 --- a/client/src/components/WebsiteForm.tsx +++ b/client/src/components/WebsiteForm.tsx @@ -29,7 +29,7 @@ function sanitize(form: Record): WebsiteFormBody { const fields = [ 'url', 'crawl_every', 'depth', 'limit', 'tags', 'headers', 'lighthouse', 'carbon_footprint', 'responsiveness', - 'technologies_and_trackers' + 'technologies_and_trackers', 'use_playwright', ]; const body: Record = {}; Object.keys(form).forEach((key) => { if (fields.includes(key)) { body[key] = form[key]; } }); @@ -98,6 +98,18 @@ export default function WebsiteForm({
Paramètres de crawl + + ) => updateForm({ use_playwright: e.target.checked })} + /> + + + +