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
Fix filter identity check in project.deleted and thread.deleted handlers
Array.filter() always returns a new array, so identity checks like
'projects === state.projects' always evaluate to false. Replace with
length comparison to preserve referential identity when no element
was actually removed.
0 commit comments