diff --git a/desktop/app/src/reducers/notifications.tsx b/desktop/app/src/reducers/notifications.tsx index 51e1467ad85..bc168fe4434 100644 --- a/desktop/app/src/reducers/notifications.tsx +++ b/desktop/app/src/reducers/notifications.tsx @@ -146,7 +146,7 @@ function activeNotificationsReducer( ): State { const {payload} = action; const newActiveNotifications = []; - const newInactivatedNotifications = state.invalidatedNotifications; + const newInactivatedNotifications = state.invalidatedNotifications.slice(); const newIDs = new Set(payload.notifications.map((n: Notification) => n.id));