diff --git a/ui/redux/actions/app.js b/ui/redux/actions/app.js index 33b1a3e9c..2665ae06b 100644 --- a/ui/redux/actions/app.js +++ b/ui/redux/actions/app.js @@ -206,7 +206,7 @@ export function doNotifyUpdateAvailable(e) { const state = getState(); const noModalBeingDisplayed = !selectModal(state); const isUpgradeSkipped = selectIsUpgradeSkipped(state); - const isRemoveVersionDiff = remoteVersion !== selectRemoteVersion(state); + const isRemoteVersionDiff = remoteVersion !== selectRemoteVersion(state); dispatch({ type: ACTIONS.CHECK_UPGRADE_SUCCESS, @@ -223,7 +223,7 @@ export function doNotifyUpdateAvailable(e) { return; } - if (noModalBeingDisplayed && !isUpgradeSkipped && isRemoveVersionDiff) { + if (noModalBeingDisplayed && !isUpgradeSkipped && isRemoteVersionDiff) { dispatch(doOpenModal(MODALS.UPGRADE)); } };