fix: remove current page variable

This commit is contained in:
karishmas6
2024-08-19 00:39:24 +05:30
parent 6a597daa42
commit 0d1f83c201

View File

@@ -371,7 +371,6 @@ export default class Interpreter extends EventEmitter {
private async handlePagination(page: Page, config: { listSelector: string, fields: any, limit?: number, pagination: any }) {
let allResults: Record<string, any>[] = [];
let currentPage = 1;
let previousHeight = 0
while (true) {