React + Redux + Typescript Chrome Extension Popup Script - Redux Devtools Shows "No Store Found" (Possible Solution?)
See original GitHub issueHi @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?
Issue Analytics
- State:
- Created 2 years ago
- Comments:5
Top Results From Across the Web
React + Redux + Typescript Chrome Extension Popup Script
When I run in the browser, using npm start ( react-scripts start ), I do see the store in the Redux DevTools extension,...
Read more >redux devtools chrome extensions - No store found-Reactjs
[Solved]-redux devtools chrome extensions - No store found-Reactjs ... + Typescript Chrome Extension Popup Script - Redux Devtools Shows "No Store Found" ...
Read more >Fix the Missing Redux DevTools Chrome ExtensionWhen ...
Head over to Redux DevTools from the Chrome instance running the debug localhost server, and hit Remove from Chrome then Install. Next, restart...
Read more >redux chrome extension - Unisa
Open Chrome DevTools. Found inside – Page ix... measure 236 useCallback Google Chrome DevTools Redux selectors with shallow 237 The React DevTools extension...
Read more >redux-devtools-extension - Bountysource
React + Redux + Typescript Chrome Extension Popup Script - Redux Devtools Shows "No Store Found" (Possible Solution?) $ 0. Created 1 year...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
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
@spirobel Nope, I have the same issue as you described in your ticket - I just see a blank page in the
trace
tab when working with the remote redux devtools. However, on another project of mine, I can see the trace for the regular redux devtools. Thus, this is likely a bug with the remote version.