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 namely/frontend, it is somewhat common to reset store properties to their default value in setup operations. For example:
dispatch(setError(null));
For collection stores we can just call the provided clear action but it'd be nice if there was also a reset action for simple stores that just sets the value to the defaultValue. For example:
In namely/frontend, it is somewhat common to reset store properties to their default value in
setup
operations. For example:For collection stores we can just call the provided
clear
action but it'd be nice if there was also areset
action for simple stores that just sets the value to thedefaultValue
. For example:The text was updated successfully, but these errors were encountered: