You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nice simple library!
If I understand correctly, redux-side-effect (like redux-saga, redux-loop, etc) doesn't currently work well with time travel, since replaying actions also re-calls functions that cause side effects. Is that right?
I think there's a good solution, but want to check with you to see if this is a problem first.
The text was updated successfully, but these errors were encountered:
I think you need to change the code to recognize when you are in development and doing time travelling. You could for example cache the original response from the side effect and not actually invoke the side effect function the next time around but just use the cached response.
Nice simple library!
If I understand correctly, redux-side-effect (like redux-saga, redux-loop, etc) doesn't currently work well with time travel, since replaying actions also re-calls functions that cause side effects. Is that right?
I think there's a good solution, but want to check with you to see if this is a problem first.
The text was updated successfully, but these errors were encountered: