diff --git a/packages/neuron-ui/src/states/stateProvider/reducer.ts b/packages/neuron-ui/src/states/stateProvider/reducer.ts index 1547ce6a5c..ace3dc160c 100644 --- a/packages/neuron-ui/src/states/stateProvider/reducer.ts +++ b/packages/neuron-ui/src/states/stateProvider/reducer.ts @@ -424,6 +424,10 @@ export const reducer = ( }, notifications: app.notifications.filter(({ timestamp }) => timestamp !== payload), showAllNotifications: app.notifications.length > 1, + showTopAlert: + app.notifications.findIndex(message => message.timestamp === payload) === app.notifications.length - 1 + ? false + : app.showTopAlert, }, } }