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

Commit 603c4c8f authored by Ronak Patel's avatar Ronak Patel
Browse files

added null conditio

parent ad1e106c
Loading
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@ export default {
			showRegistrationForm: true,
			showCaptchaForm: false,
			showRecoveryEmailForm: false,
			showSuccessSection: false
			showSuccessSection: false,
		}
	},
	mounted() {
@@ -57,7 +57,7 @@ export default {
		const recoveryEmail = urlParams.get('recoveryEmail')

		// Set formData.email directly to recoveryEmail
		this.formData.email = recoveryEmail ? recoveryEmail : ''
		this.formData.email = recoveryEmail || ''
	},
	methods: {
		submitRegistrationForm(data) {