diff --git a/src/redux/actions/release_version_actions.js b/src/redux/actions/release_version_actions.js index ffc785c..be8e073 100644 --- a/src/redux/actions/release_version_actions.js +++ b/src/redux/actions/release_version_actions.js @@ -38,9 +38,8 @@ export const detectUIUpgrade = () => { } else { dispatch(clearUIUpgrade()); } - }).catch(error => { + }).catch(() => { dispatch(clearUIUpgrade()); - dispatch(notifyError(error)); }); }; };