diff --git a/src/components/registration/registration.js b/src/components/registration/registration.js
index ca1fed944af33149e888e95d0b5824f1ec4851c0..78d319804c469acf91867e4dfbf52f0b3461f532 100644
--- a/src/components/registration/registration.js
+++ b/src/components/registration/registration.js
@@ -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()