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
RouterStateSnapshot is likely to contain circular references (e.g. child routes have pointers to their parent) and thus it prevents navigation actions to be properly encoded as a JSON string.
As mentioned in this thread, unserializable actions are not advised as they can lead to compatibility issues with some redux libraries/tools.
Do you plan to address this issue in the future by converting navigation actions into "serialization-compliant" objects ?
The text was updated successfully, but these errors were encountered:
Currently, RouteNavigationPayload stores a reference to a
RouterStateSnapshot
instance.RouterStateSnapshot
is likely to contain circular references (e.g. child routes have pointers to their parent) and thus it prevents navigation actions to be properly encoded as a JSON string.As mentioned in this thread, unserializable actions are not advised as they can lead to compatibility issues with some redux libraries/tools.
Do you plan to address this issue in the future by converting navigation actions into "serialization-compliant" objects ?
The text was updated successfully, but these errors were encountered: