We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d8f869 commit 348677cCopy full SHA for 348677c
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "suspense-service",
3
- "version": "0.2.5",
+ "version": "0.2.6",
4
"description": "Suspense integration library for React",
5
"repository": "github:patrickroberts/suspense-service",
6
"main": "dst/cjs/suspense-service.js",
src/StateContext/Provider/index.tsx
@@ -28,5 +28,6 @@ export function createStateContextProvider<T>(
28
Object.is(prev.value, next.value)
29
&& Object.is(prev.id, next.id)
30
&& Object.is(prev.children, next.children)
31
+ && Object.is(prev.reset, next.reset)
32
));
33
}
0 commit comments