Remove obsolete phrase during registration

This commit is contained in:
Bubka 2022-06-24 09:24:35 +02:00
parent 7c2a9b8819
commit 7dc04d6158

View File

@ -72,7 +72,7 @@
.catch(error => {
if( error.response.status === 422 && error.response.data.errors.name ) {
this.$notify({ type: 'is-danger', text: this.$t('errors.already_one_user_registered') + ' ' + this.$t('errors.cannot_register_more_user'), duration:-1 })
this.$notify({ type: 'is-danger', text: this.$t('errors.cannot_register_more_user'), duration:-1 })
}
else if( error.response.status !== 422 ) {