feat: remove splice

This commit is contained in:
karishmas6
2024-08-17 23:33:33 +05:30
parent f4511b7abc
commit 9f8e8fc01a

View File

@@ -375,7 +375,7 @@ async function clickNextPagination(selector, scrapedData, limit) {
}
}
return scrapedData.slice(0, limit); // Return only the limited number of records
return scrapedData
};