diff --git a/ts/state/ducks/updates.ts b/ts/state/ducks/updates.ts index ac44839e97..471ff0c1f7 100644 --- a/ts/state/ducks/updates.ts +++ b/ts/state/ducks/updates.ts @@ -127,6 +127,14 @@ export function reducer( }; } + if (action.type === START_UPDATE) { + return { + dialogType: Dialogs.None, + didSnooze: state.didSnooze, + showEventsCount: state.showEventsCount, + }; + } + if ( action.type === DISMISS_DIALOG && state.dialogType === Dialogs.MacOS_Read_Only