Web: Client: fix text error

This commit is contained in:
Viktor Fomin 2022-03-05 14:02:15 +03:00
parent 7abf49c62a
commit 8e23ef6a15

View File

@ -557,7 +557,11 @@ const Confirm = (props) => {
labelVisible={false}
hasError={!emailValid}
errorMessage={
emailErrorText ? emailErrorText : t("Common:RequiredField")
emailErrorText
? emailErrorText
: errorText
? errorText
: t("Common:RequiredField")
}
>
<EmailInput