kui-crm 0.0.89 → 0.0.90

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.
package/cjs/index.js CHANGED
@@ -373,7 +373,6 @@ var useAutocomplete = function (filter, paginator, fetchAll, isOpen, defaultFilt
373
373
  paginator.startFetching();
374
374
  }, []);
375
375
  React.useEffect(function () {
376
- console.log("effect", paginator.isFetching, paginator.isFinishPage, withoutRequest, isOpen);
377
376
  if (paginator.isFetching &&
378
377
  !paginator.isFinishPage &&
379
378
  !withoutRequest &&
@@ -382,7 +381,6 @@ var useAutocomplete = function (filter, paginator, fetchAll, isOpen, defaultFilt
382
381
  }
383
382
  }, [fetchAll, paginator.isFetching, isOpen]);
384
383
  kuiUtils.useDebounce(filter.searchQuery, 500, function () {
385
- console.log("update search query");
386
384
  paginator.clearOffset();
387
385
  paginator.startFetching();
388
386
  });