ywana-core8 0.0.765 → 0.0.766

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.
@@ -10416,8 +10416,10 @@ var CollectionContextProvider = function CollectionContextProvider(props) {
10416
10416
  load();
10417
10417
  }, [filters]);
10418
10418
  useEffect(function () {
10419
- console.log("CONTEXT LOAD for CustomFilters", customFilters);
10420
- load();
10419
+ if (Object.keys(customFilters).length > 0) {
10420
+ console.log("CONTEXT LOAD for CustomFilters", customFilters);
10421
+ load();
10422
+ }
10421
10423
  }, [customFilters]);
10422
10424
 
10423
10425
  function clearSelection() {