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
In MST, we're able to store non-serializable objects in volatile fields. When using connectReduxDevtools, if we create an action to set such field, an error will be thrown because somewhere in code it tries to log the action arguments. For now I've simply disabled logArgsNearMe, but it would be nice to have this logging functionality for other actions whose args are indeed serializable.
Maybe we can do some sort of check? If it's serializable, then log it, if not simply skip it.
The text was updated successfully, but these errors were encountered:
In MST, we're able to store non-serializable objects in
volatile
fields. When usingconnectReduxDevtools
, if we create an action to set such field, an error will be thrown because somewhere in code it tries to log the action arguments. For now I've simply disabledlogArgsNearMe
, but it would be nice to have this logging functionality for other actions whose args are indeed serializable.Maybe we can do some sort of check? If it's serializable, then log it, if not simply skip it.
The text was updated successfully, but these errors were encountered: