reactjrx 1.108.3 → 1.108.4
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 -7
- package/dist/index.js +1 -7
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -668,13 +668,7 @@ class QueryClient$ {
|
|
|
668
668
|
* - unmounting the component
|
|
669
669
|
* @see https://tanstack.com/query/latest/docs/framework/react/guides/query-cancellation
|
|
670
670
|
*/
|
|
671
|
-
rxjs.takeUntil(
|
|
672
|
-
rxjs.fromEvent(signal2, "abort").pipe(
|
|
673
|
-
rxjs.tap(() => {
|
|
674
|
-
debugger;
|
|
675
|
-
})
|
|
676
|
-
)
|
|
677
|
-
),
|
|
671
|
+
rxjs.takeUntil(rxjs.fromEvent(signal2, "abort")),
|
|
678
672
|
rxjs.share()
|
|
679
673
|
);
|
|
680
674
|
const cacheEntry = {
|
package/dist/index.js
CHANGED
|
@@ -650,13 +650,7 @@ class QueryClient$ {
|
|
|
650
650
|
* - unmounting the component
|
|
651
651
|
* @see https://tanstack.com/query/latest/docs/framework/react/guides/query-cancellation
|
|
652
652
|
*/
|
|
653
|
-
takeUntil(
|
|
654
|
-
fromEvent(signal2, "abort").pipe(
|
|
655
|
-
tap(() => {
|
|
656
|
-
debugger;
|
|
657
|
-
})
|
|
658
|
-
)
|
|
659
|
-
),
|
|
653
|
+
takeUntil(fromEvent(signal2, "abort")),
|
|
660
654
|
share()
|
|
661
655
|
);
|
|
662
656
|
const cacheEntry = {
|