sms retry 30 seconds

master^2
Pete Matsyburka 1 week ago
parent ae7b0ce608
commit 1416cf72e8

@ -261,7 +261,7 @@ export default {
} }
}, },
resendCode () { resendCode () {
if (this.codeSentAt && Date.now() - this.codeSentAt < 15000) { if (this.codeSentAt && Date.now() - this.codeSentAt < 30000) {
this.startResendCodeCountdown() this.startResendCodeCountdown()
} else { } else {
this.isResendLoading = true this.isResendLoading = true
@ -274,7 +274,7 @@ export default {
} }
}, },
startResendCodeCountdown () { startResendCodeCountdown () {
this.resendCodeCountdown = 15 - parseInt((Date.now() - this.codeSentAt) / 1000) this.resendCodeCountdown = 30 - parseInt((Date.now() - this.codeSentAt) / 1000)
this.interval = setInterval(() => { this.interval = setInterval(() => {
this.resendCodeCountdown-- this.resendCodeCountdown--

Loading…
Cancel
Save