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
selectLocalAwarenessState: (state: any) => T | undefined will never equal awareness.getStates().entries() mapped to a (BaseAwarenessState & T)[].
I'm guessing that you intended selectLocalAwarenessState to select only the awareness object for the local client, but you're comparing it to list of states for every client.
I'm planning on fixing this in a PR implementing #45 by having two selectors (one for your awareness and one for your view of your peer's awareness)
The text was updated successfully, but these errors were encountered:
selectLocalAwarenessState: (state: any) => T | undefined
will never equalawareness.getStates().entries()
mapped to a(BaseAwarenessState & T)[]
.I'm guessing that you intended
selectLocalAwarenessState
to select only the awareness object for the local client, but you're comparing it to list of states for every client.I'm planning on fixing this in a PR implementing #45 by having two selectors (one for your awareness and one for your view of your peer's awareness)
The text was updated successfully, but these errors were encountered: