-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Wrong persistState session id? #18
Comments
Also see: reduxjs/redux-devtools#191 |
Hey @peteruithoven, I thought it is the intended result, isn't it? |
We don't double it, |
Got it. I saw your solution. If you make a pull request here, I'd merge it. |
Thanks, @peteruithoven. I also removed New version ( Also, I added a proposal (#20) to extending persistState. If you have some more suggestions, it's better to continue the discussion there. |
When using
...?debug_session=a
for persistant state, the state is stored under the following key in localStorage:redux-dev-session-?debug_session=a,a
This is because the whole String.match() result is used, instead of a specific group, see:
https://github.com/zalmoxisus/redux-devtools-extension/blob/master/src/app/store/configureStore.js#L9-L11
When debug_session is available, the second array item should be used as id.
The text was updated successfully, but these errors were encountered: