@trackunit/react-graphql-hooks 1.3.192 → 1.3.194

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/index.cjs.js CHANGED
@@ -199,6 +199,7 @@ const usePaginationQuery = (document, { ...props }) => {
199
199
  });
200
200
  const doFetchMore = react.useCallback((variables, prev) => {
201
201
  if (internalProps.skip) {
202
+ setIsLoading(false);
202
203
  return;
203
204
  }
204
205
  setIsLoading(true);
package/index.esm.js CHANGED
@@ -178,6 +178,7 @@ const usePaginationQuery = (document, { ...props }) => {
178
178
  });
179
179
  const doFetchMore = useCallback((variables, prev) => {
180
180
  if (internalProps.skip) {
181
+ setIsLoading(false);
181
182
  return;
182
183
  }
183
184
  setIsLoading(true);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/react-graphql-hooks",
3
- "version": "1.3.192",
3
+ "version": "1.3.194",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -10,10 +10,10 @@
10
10
  "@apollo/client": "3.13.8",
11
11
  "react": "19.0.0",
12
12
  "lodash": "4.17.21",
13
- "@trackunit/i18n-library-translation": "1.3.186",
14
- "@trackunit/shared-utils": "1.5.162",
15
- "@trackunit/react-table-pagination": "1.3.162",
16
- "@trackunit/react-test-setup": "1.0.52"
13
+ "@trackunit/i18n-library-translation": "1.3.187",
14
+ "@trackunit/shared-utils": "1.5.163",
15
+ "@trackunit/react-table-pagination": "1.3.163",
16
+ "@trackunit/react-test-setup": "1.0.53"
17
17
  },
18
18
  "module": "./index.esm.js",
19
19
  "main": "./index.cjs.js",