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
This issue is just a reemider to the fact that in acceptDialog state is cloned by JSON.parse the stringified result of state - const stateData = JSON.parse(JSON.stringify(redux_store.getState()));
^ This will result in loss of null and other values that aren't supported by JSON so keep it in mind where such values are important and improve this.
The text was updated successfully, but these errors were encountered:
This issue is just a reemider to the fact that in
acceptDialog
state is cloned byJSON.parse
the stringified result of state -const stateData = JSON.parse(JSON.stringify(redux_store.getState()));
^ This will result in loss of
null
and other values that aren't supported by JSON so keep it in mind where such values are important and improve this.The text was updated successfully, but these errors were encountered: