@ptolemy2002/react-proxy-context 1.0.10 → 1.0.11

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.
Files changed (2) hide show
  1. package/index.js +0 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -392,7 +392,6 @@ function ProxyContextProvider({ contextClass, children, value, onChange, proxyRe
392
392
  value2 = target[prop];
393
393
  Object.values(changeSubscribers.current).forEach((subscriber) => {
394
394
  if (!subscriber.deps || subscriber.deps.includes(prop) && prevValue !== value2 || subscriber.deps.some((subProp) => (0, import_is_callable.default)(subProp) && subProp(prop, value2, prevValue, newObj))) {
395
- console.log("Calling subscriber:", subscriber);
396
395
  subscriber.callback(prop, value2, prevValue);
397
396
  }
398
397
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ptolemy2002/react-proxy-context",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "main": "index.js",
5
5
  "files": [
6
6
  "index.js"