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
Thanks for the note. Right now, I don't have enough information to help solve your issue. I've created a Stackblitz. Could you fork the Stackblitz to provide a reproduction of the issue? Thank you
If you quickly click the button multiple times, you'll see it doesn't log it as much - which is exactly what I need, but when I try to do it like so, the log doesn't look like I need it to.
I'd like to
console.log
each time an action is being called, with the passed params.For example:
increment, 1
decrement, 2
setName, foo
etc.
This is my middleware:
It works when I wrap my store before
zundo
, but it's not ideal because I'm using debounce withhandleSet
.I've seen a suggestion to use
wrapTemporal
here #184.So I did:
But it only catches
_handleSet
with old state and new state.Is there a way to do it?
The text was updated successfully, but these errors were encountered: