4

Using the Redux Dev Tools extension, I am receiving errors when exporting any time after I have interacted with my app. If I do a fresh page load and export, it works, but after one or sometimes a couple of state changes, I receive "Failed: Network error" from Chrome instead of a download.

Has anyone ran into this issue before?

Jazzy
  • 6,029
  • 11
  • 50
  • 74
  • I'm seeing the exact same error, but have also been unable to find a solution. Did you find anything? – Robin May 30 '16 at 12:27
  • 2
    Unfortunately, no. But if I do, I will update this question. If I reload the page it works, but that defeats the whole purpose :) – Jazzy May 30 '16 at 18:16

1 Answers1

2

Your state(s) size is probably too big. I started cleanup unused data from state, and Export stopped failing.

Try also "Commit" to view/get only the last state.

  • I no longer have access to the codebase that was causing this issue, can someone with the same issue give this a try and see if this solves the issue and report back? – Jazzy Aug 21 '16 at 02:43
  • Does for me! Thanks. – Dan Oct 18 '16 at 18:56