-
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
React + Redux + Typescript Chrome Extension Popup Script - Redux Devtools Shows "No Store Found" (Possible Solution?) #820
Comments
Seems like it was a false positive (I had an existing tab from localhost:3000 that was created by react-scripts which caused the store to appear to work). So unfortunately, the above "solution" does not seem to work 😥 Would appreciate any feedback that you could provide. |
I figured out a solution, thanks to a kind StackOverflow user in my original post. SolutionA server needs to be running and The best approach for running the server would be the following:
As proof, here is the working interface: Would be great if the documentation could indicate this for future users as I spent a lot of time being confused and not being able to simply set up the extension. |
@lbragile did you get the actionCreators and tracing to work? It didn't work for me: reduxjs/redux-toolkit#1815 |
@spirobel Nope, I have the same issue as you described in your ticket - I just see a blank page in the |
true. So it is most likely a problem in the remote version. It seems like it is requesting the sources, but cant get them: https://imgur.com/a/BYzR0Nn |
Hi @zalmoxisus,
I asked the above question on StackOverflow
One of the responses suggested that when webpack applying 'uglification', then
window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__
in this code breaks.Instead, using
window["__REDUX_DEVTOOLS_EXTENSION_COMPOSE__"]
should solve this issue.Once I applied the above, I could finally see the store from the
redux
tab in the devtools window.However, my actions are still not being dispatched.
Is this due to my application being a chrome extension popup script?
Would using
remote-redux-devtool
fix the issue here?The text was updated successfully, but these errors were encountered: