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 1b63b51 commit 0446791Copy full SHA for 0446791
src/react/components/QueryProvider.tsx
@@ -43,9 +43,9 @@ export function QueryProvider({
43
44
const value = useMemo(
45
function (): ContextValue {
46
- return { query, clearOnForget, ignoreTransitionContext }
+ return { query: localQuery, clearOnForget, ignoreTransitionContext }
47
},
48
- [query, clearOnForget, ignoreTransitionContext]
+ [localQuery, clearOnForget, ignoreTransitionContext]
49
)
50
51
return <Context value={value}>{children}</Context>
0 commit comments