reactjrx 1.108.4 → 1.109.0
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.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -763,7 +763,7 @@ function useQuery$(options, queryClient) {
|
|
|
763
763
|
complete: () => {
|
|
764
764
|
if ((queryCacheEntry == null ? void 0 : queryCacheEntry.lastData) === void 0) {
|
|
765
765
|
console.log(
|
|
766
|
-
|
|
766
|
+
`cancelled due to stream completing without data for query ${queryHash}`,
|
|
767
767
|
queryCacheEntry == null ? void 0 : queryCacheEntry.lastData
|
|
768
768
|
);
|
|
769
769
|
_queryClient.cancelQueries({
|
package/dist/index.js
CHANGED
|
@@ -745,7 +745,7 @@ function useQuery$(options, queryClient) {
|
|
|
745
745
|
complete: () => {
|
|
746
746
|
if ((queryCacheEntry == null ? void 0 : queryCacheEntry.lastData) === void 0) {
|
|
747
747
|
console.log(
|
|
748
|
-
|
|
748
|
+
`cancelled due to stream completing without data for query ${queryHash}`,
|
|
749
749
|
queryCacheEntry == null ? void 0 : queryCacheEntry.lastData
|
|
750
750
|
);
|
|
751
751
|
_queryClient.cancelQueries({
|