I have the following validation:
validates :email, format: { with: Devise::email_regexp, message: I18n.t('activerecord.errors.models.client.attributes.email.invalid') }
The problem is, it is now showing the error message I specify there. It shows the default one.
What am I missing?