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(slack): delete correct notification row instead of the last one
Notification rows were keyed by array index in NotificationsPanel,
so deleting a middle row caused React to reconcile the wrong DOM
node (always the last row) instead of the one that was clicked,
even though the underlying store removed the correct item. Give
each notification a stable id and key on that instead.
0 commit comments