diff --git a/src/views/loginAccount.vue b/src/views/loginAccount.vue index 7a652cf..c335d67 100644 --- a/src/views/loginAccount.vue +++ b/src/views/loginAccount.vue @@ -137,8 +137,8 @@ export default { return; } loginWithPhone({ - countrycode: this.countryCode.replace("+", "").replaceAll(" ", ""), - phone: this.phoneNumber.replaceAll(" ", ""), + countrycode: this.countryCode.replace("+", "").replace(/\s/g, ''), + phone: this.phoneNumber.replace(/\s/g, ''), password: "fakePassword", md5_password: md5(this.password).toString(), }) @@ -156,7 +156,7 @@ export default { return; } loginWithEmail({ - email: this.email.replaceAll(" ", ""), + email: this.email.replace(/\s/g, ''), password: "fakePassword", md5_password: md5(this.password).toString(), })