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
Currently the resolver for any change in the store will reverse-resolve changes.
If we have an object:
{a: {b: {c: {},},},},
If we make a change to c it will also affect subscribers listening to b and a.
We should offer a super explicit mode so that you would have to explicitly state each level you are interested in.
You can already do this for deeper levels, however we just need to disable the reverse resolution if the mode is enabled
The text was updated successfully, but these errors were encountered:
Currently the resolver for any change in the store will reverse-resolve changes.
If we have an object:
If we make a change to
c
it will also affect subscribers listening tob
anda
.We should offer a super explicit mode so that you would have to explicitly state each level you are interested in.
You can already do this for deeper levels, however we just need to disable the reverse resolution if the mode is enabled
The text was updated successfully, but these errors were encountered: