From 775d6a8c6bf34c16dbc7236d302901da9aa80067 Mon Sep 17 00:00:00 2001 From: chungyau97 Date: Mon, 15 May 2023 22:54:29 +0700 Subject: [PATCH] yarn lint-fix --- packages/components/nodes/documentloaders/Cheerio/Cheerio.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/components/nodes/documentloaders/Cheerio/Cheerio.ts b/packages/components/nodes/documentloaders/Cheerio/Cheerio.ts index bdaaf20d1..bfb6abdbd 100644 --- a/packages/components/nodes/documentloaders/Cheerio/Cheerio.ts +++ b/packages/components/nodes/documentloaders/Cheerio/Cheerio.ts @@ -84,7 +84,7 @@ class Cheerio_DocumentLoaders implements INode { let availableUrls: string[] let docs = [] if (webScrap) { - if (!limit) limit = "10" + if (!limit) limit = '10' availableUrls = await getAvailableURLs(url, parseInt(limit)) for (let i = 0; i < availableUrls.length; i++) { docs.push(...(await cheerioLoader(availableUrls[i])))