Skip to content

Commit 24c7853

Browse files
committed
fix pagination
1 parent 9bd98df commit 24c7853

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/campaign_monitor/campaign_monitor.app.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,9 +243,9 @@ export default {
243243
if (max && ++count >= max) {
244244
return;
245245
}
246-
hasMore = args.params.page < numPages;
247-
args.params.page++;
248246
}
247+
hasMore = args.params.page < numPages;
248+
args.params.page++;
249249
} while (hasMore);
250250
},
251251
},

0 commit comments

Comments
 (0)