@isograph/react 0.0.0-main-86c3a28d → 0.0.0-main-8c6add71

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
@@ -49,7 +49,6 @@ function useRead(fragmentReference) {
49
49
  const [, setState] = (0, react_1.useState)();
50
50
  (0, react_1.useEffect)(() => {
51
51
  return (0, cache_1.subscribe)(environment, () => {
52
- console.log('useRead set state');
53
52
  return setState({});
54
53
  });
55
54
  }, []);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@isograph/react",
3
- "version": "0.0.0-main-86c3a28d",
3
+ "version": "0.0.0-main-8c6add71",
4
4
  "description": "Use Isograph with React",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -15,8 +15,8 @@
15
15
  "prepack": "yarn run test && yarn run compile"
16
16
  },
17
17
  "dependencies": {
18
- "@isograph/disposable-types": "0.0.0-main-86c3a28d",
19
- "@isograph/react-disposable-state": "0.0.0-main-86c3a28d",
18
+ "@isograph/disposable-types": "0.0.0-main-8c6add71",
19
+ "@isograph/react-disposable-state": "0.0.0-main-8c6add71",
20
20
  "react": "^18.2.0"
21
21
  },
22
22
  "devDependencies": {
package/src/index.tsx CHANGED
@@ -276,7 +276,6 @@ export function useRead<
276
276
  const [, setState] = useState<object | void>();
277
277
  useEffect(() => {
278
278
  return subscribe(environment, () => {
279
- console.log('useRead set state');
280
279
  return setState({});
281
280
  });
282
281
  }, []);