Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7d6896cd authored by Akhil's avatar Akhil 🙂
Browse files

fix: remove cryptosupportchecked

parent 358e5ca9
Loading
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -69,7 +69,6 @@ export default {
			showSuccessSection: false,
			shouldSetupPasswordsE2ee: loadState(APPLICATION_NAME, 'shouldSetupPasswordsE2ee'),
			cryptoSupported: true,
			cryptoSupportChecked: false,
			language: loadState(APPLICATION_NAME, 'lang'),
			processingCreation: false,
		}
@@ -86,7 +85,6 @@ export default {
	methods: {
		async checkCryptoSupport() {
			if (!this.shouldSetupPasswordsE2ee) {
				this.cryptoSupportChecked = true
				return
			}

@@ -106,8 +104,6 @@ export default {
				this.cryptoSupported = false
				const cryptoSupportError = t(this.appName, 'Your browser does not support the cryptography required to create an account. Please use a modern browser.')
				showError(cryptoSupportError, { timeout: -1 })
			} finally {
				this.cryptoSupportChecked = true
			}
		},
		submitRegistrationForm(data) {