diff --git a/frontend/src/components/forms/Register.vue b/frontend/src/components/forms/Register.vue index 3542602..297c4e4 100644 --- a/frontend/src/components/forms/Register.vue +++ b/frontend/src/components/forms/Register.vue @@ -54,15 +54,15 @@ export default { showPassword: false, passwordRules: [v => !!v || 'Password is required'], - passwordConfirm: '', + passwordConfirm: '' }), computed: { passwordConfirmRules() { return [ - () => this.password === this.passwordConfirm || "Passwords must match" + () => this.password === this.passwordConfirm || 'Passwords must match' ] - }, + } }, methods: {