You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently started using redux-auth in clientOnly mode. I had to update from v0.0.2 to 0.0.3 for the login status to persist and now react-redux-router stopped recognizing the URL params.
For example
If I go to /signin?next=dashboard the route configuration <Route path="signin" component={AuthenticationSignIn} /> doesn’t match it anymore and the page gets 404 (worked fine in 0.0.2)
In the redux store the URL doesn't get divided into pathname and search
I recently started using redux-auth in
clientOnly
mode. I had to update fromv0.0.2
to0.0.3
for the login status to persist and nowreact-redux-router
stopped recognizing the URL params.For example
If I go to
/signin?next=dashboard
the route configuration<Route path="signin" component={AuthenticationSignIn} />
doesn’t match it anymore and the page gets 404 (worked fine in 0.0.2)In the redux store the URL doesn't get divided into pathname and search
My configuration:
The text was updated successfully, but these errors were encountered: