Hi I am new to redux and I'm having trouble seeing my entire tree of reducers, so far I only see the getTopGames reducer in my redux dev tools and I cant figure out why I can't see anything else like shop, and getGameDetails. Since I set up my store and combined all my reducers shouldn't I see all the reducer states in my devtools? (Ex. getTopGames, under that shop, under that getGameDetails)??? Thank you for any help and insight here is the github link https://github.com/andrewjkim745/Twitch-Store
Asked
Active
Viewed 376 times
2

andrew kim
- 137
- 1
- 6
1 Answers
1
This is happening because in INITIAL_STATE
you've only define getTopGames
reducer.
That's why initially you can only see the getTopGames
reducer in your redux dev tools. Add your other reducers shop
and getGameDetails
in INITIAL_STATE
then you'll be able to see them initially in your redux dev tools. Even if you don't, once you start performing actions from other reducers, you can see them in your redux dev tools.

Sanket Shah
- 2,888
- 1
- 11
- 22
-
1Thank you this was it! can't believe I missed that! – andrew kim Feb 12 '22 at 06:25
-
1ok got it thanks again! – andrew kim Feb 12 '22 at 06:38