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
The read of selectedStatehere can end up tracked in a reactive context like an effect, if a dispatch is made inside of that context. This happens because a dispatch causes subscribers to run synchronously to receive the newly reduced state, and selectedState is read inside a subscriber.
There are 2 possible fixes here:
For good reactive hygiene, ideally the wholedispatch() operation should be untracked. Nothing downstream of dispatch() makes sense to track if invoked from a reactive context.
In addition to 1, linkedSignal supports equality directly so the read of selectedState in order to invoke the equality function is actually not necessary. Instead, the equality operation can be delegated to linkedSignal.
The text was updated successfully, but these errors were encountered:
The read of
selectedState
here can end up tracked in a reactive context like aneffect
, if a dispatch is made inside of that context. This happens because a dispatch causes subscribers to run synchronously to receive the newly reduced state, andselectedState
is read inside a subscriber.There are 2 possible fixes here:
For good reactive hygiene, ideally the whole
dispatch()
operation should be untracked. Nothing downstream ofdispatch()
makes sense to track if invoked from a reactive context.In addition to 1,
linkedSignal
supports equality directly so the read ofselectedState
in order to invoke the equality function is actually not necessary. Instead, the equality operation can be delegated tolinkedSignal
.The text was updated successfully, but these errors were encountered: