diff --git a/browser-interface/package-lock.json b/browser-interface/package-lock.json index 199cd035bf..ac3f119b98 100644 --- a/browser-interface/package-lock.json +++ b/browser-interface/package-lock.json @@ -32,7 +32,7 @@ "dcl-social-client": "^1.28.0", "decentraland-ecs": "^6.11.11", "devtools-protocol": "0.0.1115542", - "eth-connect": "^6.1.0", + "eth-connect": "^6.2.2", "fp-future": "^1.0.1", "gifuct-js": "^2.1.2", "hls.js": "^1.3.4", @@ -4206,9 +4206,9 @@ } }, "node_modules/eth-connect": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/eth-connect/-/eth-connect-6.1.0.tgz", - "integrity": "sha512-p5FN4GieTxwfJvgmGCPgXqL6w8/2cbLiTmNxpgQg881gSI0RdOShTHHu8amgxlj3VM4crovBx7UEKS2RGOhBLQ==" + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/eth-connect/-/eth-connect-6.2.2.tgz", + "integrity": "sha512-OQcImRiHUKCyMtI7GtGD+nfcGToPvkuYp+REnYOcaWwCXghv6RNESowX0t7OVnHcln3qyAJiH/mCaoq1S6KD5w==" }, "node_modules/ethereum-cryptography": { "version": "1.2.0", @@ -13307,9 +13307,9 @@ "dev": true }, "eth-connect": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/eth-connect/-/eth-connect-6.1.0.tgz", - "integrity": "sha512-p5FN4GieTxwfJvgmGCPgXqL6w8/2cbLiTmNxpgQg881gSI0RdOShTHHu8amgxlj3VM4crovBx7UEKS2RGOhBLQ==" + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/eth-connect/-/eth-connect-6.2.2.tgz", + "integrity": "sha512-OQcImRiHUKCyMtI7GtGD+nfcGToPvkuYp+REnYOcaWwCXghv6RNESowX0t7OVnHcln3qyAJiH/mCaoq1S6KD5w==" }, "ethereum-cryptography": { "version": "1.2.0", diff --git a/browser-interface/package.json b/browser-interface/package.json index 6efb9d193c..6d83112cc0 100644 --- a/browser-interface/package.json +++ b/browser-interface/package.json @@ -78,7 +78,7 @@ "dcl-social-client": "^1.28.0", "decentraland-ecs": "^6.11.11", "devtools-protocol": "0.0.1115542", - "eth-connect": "^6.1.0", + "eth-connect": "^6.2.2", "fp-future": "^1.0.1", "gifuct-js": "^2.1.2", "hls.js": "^1.3.4", diff --git a/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/MyAccountHUD/EmailNotificationsController.cs b/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/MyAccountHUD/EmailNotificationsController.cs index 9bb4b36eb9..8e0550d7fd 100644 --- a/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/MyAccountHUD/EmailNotificationsController.cs +++ b/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/MyAccountHUD/EmailNotificationsController.cs @@ -233,7 +233,7 @@ private async UniTaskVoid UpdateEmailAsync(string newEmail, bool needConfirmatio PlayerPrefsBridge.SetString(CURRENT_SUBSCRIPTION_ID_LOCAL_STORAGE_KEY, newSubscription.id); PlayerPrefsBridge.Save(); savedEmail = newEmail; - savedIsPending = false; + savedIsPending = newSubscription.status is "pending" or "validating"; wasSuccessfullyUpdated = true; } catch (Exception ex)