We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
By setting refetchOnMount to false for useQuery for react@experimental and concurrent mode, the query functions are not called anymore.
refetchOnMount
false
useQuery
react@experimental
The error will be called 3 times and the query will settle with errors, instead of calling the function at all.
It works fine for 1.2.x version of react-query, but fails since 1.3.x. Do you know what might cause this?
ReactDOM.createRoot(rootElement).render( <ReactQueryConfigProvider config={{ refetchOnMount: false }}> <App /> </ReactQueryConfigProvider> );
This will cause all queries to fail.
Sandbox
Thank you for this great library.
The text was updated successfully, but these errors were encountered:
b02f8dd
🎉 This issue has been resolved in version 1.3.6 🎉
The release is available on:
Your semantic-release bot 📦🚀
Sorry, something went wrong.
No branches or pull requests
By setting
refetchOnMount
tofalse
foruseQuery
forreact@experimental
and concurrent mode, the query functions are not called anymore.The error will be called 3 times and the query will settle with errors, instead of calling the function at all.
It works fine for 1.2.x version of react-query, but fails since 1.3.x. Do you know what might cause this?
ReactDOM.createRoot(rootElement).render( <ReactQueryConfigProvider config={{ refetchOnMount: false }}> <App /> </ReactQueryConfigProvider> );
This will cause all queries to fail.
Sandbox
Thank you for this great library.
The text was updated successfully, but these errors were encountered: