Skip to content

Commit

Permalink
fix: πŸ’© forgot a console.log πŸ™ƒ
Browse files Browse the repository at this point in the history
  • Loading branch information
mathix420 committed Nov 22, 2023
1 parent b21e267 commit 21b44df
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/paginate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ export async function paginate<T>(
while (lastTotal >= limit * page) {
if (page > 1) await sleep(coolDown);
const { data, total } = await callback(limit, page);
console.log(data);
lastTotal = total;
res.push(...data);
page++;
Expand Down

0 comments on commit 21b44df

Please sign in to comment.