From d410664d9ae486a13ae3ed0b2d5696e0b2daa623 Mon Sep 17 00:00:00 2001 From: Franco Montenegro Date: Fri, 4 Mar 2022 12:32:06 -0300 Subject: [PATCH] Fix small typo in actions/app.js --- ui/redux/actions/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)); } };