-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
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
Race conditions while using react-router-6 adapter #286
Comments
Worth noting they don't seem to happen if i use the window history adapter, but i'm also not sure what the consequences of doing that are if i'm using react routing? |
My use case is persisting some global internal state to the url so users can easily share their views. As they navigate around the url is wiped, i'm using effects to restore the internal state to the url. |
This seems to have gone away when I switched to using |
Hi @shughes-uk , We have the same problem on our side. I am wondering if the PR of @afn here may help about our problem : #266 On our side we will have hard time switching from If someone have any tips, will be glad to hear. Note : To reproduce the problem better, you can debounce the call to setQuery so you will have :
Yours faithfully, |
I've been noticing race conditions with the react-router-6 adapter that don't seem to occur when just using the window adapter.
Specifically this seems to happen in situations where a navigate occurs below a component that is setting a query param.
This results in the url just having the query param, and not navigating to
/someRoute
. It works fine if you don't usereplace
. I have experimental batching turned on.The text was updated successfully, but these errors were encountered: