monkey-front-core 0.0.166 → 0.0.167

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2428,12 +2428,7 @@ class MonkeyEcxCommonsService {
2428
2428
  }
2429
2429
  doPaginationv2(type, callback) {
2430
2430
  if (!this.__onLoadingInProgress$.value) {
2431
- const hasMorePages = this.setPage({
2432
- page: {
2433
- ...this.__page
2434
- }
2435
- }).nextPage();
2436
- if (hasMorePages && callback) {
2431
+ if (callback) {
2437
2432
  callback();
2438
2433
  }
2439
2434
  }