Remove empty else branch and detail the comments

This commit is contained in:
tusooa 2024-01-13 17:44:13 -05:00
parent 82c0044963
commit 209c0a8332
No known key found for this signature in database
GPG Key ID: 42AEC43D48433C51

View File

@ -112,9 +112,9 @@ const registration = {
const status = await this.signUp(this.user)
if (status === 'ok') {
this.$router.push({ name: 'friends' })
} else {
// display sign up notice, do not switch anywhere
}
// If status is not 'ok' (i.e. it needs further actions to be done
// before you can login), display sign up notice, do not switch anywhere
} catch (error) {
console.warn('Registration failed: ', error)
this.setCaptcha()