@unifold/react-provider 0.1.16 → 0.1.17

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/dist/index.js CHANGED
@@ -58,10 +58,6 @@ function UnifoldProvider({
58
58
  const prevPublishableKeyRef = (0, import_react.useRef)(publishableKey);
59
59
  (0, import_react.useEffect)(() => {
60
60
  if (prevPublishableKeyRef.current !== publishableKey) {
61
- console.log(
62
- "Unifold: Reinitializing with new publishable key:",
63
- publishableKey
64
- );
65
61
  prevPublishableKeyRef.current = publishableKey;
66
62
  }
67
63
  }, [publishableKey]);
package/dist/index.mjs CHANGED
@@ -38,10 +38,6 @@ function UnifoldProvider({
38
38
  const prevPublishableKeyRef = useRef(publishableKey);
39
39
  useEffect(() => {
40
40
  if (prevPublishableKeyRef.current !== publishableKey) {
41
- console.log(
42
- "Unifold: Reinitializing with new publishable key:",
43
- publishableKey
44
- );
45
41
  prevPublishableKeyRef.current = publishableKey;
46
42
  }
47
43
  }, [publishableKey]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unifold/react-provider",
3
- "version": "0.1.16",
3
+ "version": "0.1.17",
4
4
  "description": "Unifold React Provider - Core provider and context for Unifold React SDKs",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",