Client:Confirm Fixed error message

This commit is contained in:
Akmal Isomadinov 2024-08-29 18:08:28 +05:00
parent e0b24bb626
commit 88e282f5cb

View File

@ -680,7 +680,11 @@ const CreateUserForm = (props) => {
isVertical={true}
labelVisible={false}
hasError={isPasswordErrorShow && !passwordValid}
errorMessage={t("Common:IncorrectPassword")}
errorMessage={
password
? t("Common:IncorrectPassword")
: t("Common:RequiredField")
}
>
<PasswordInput
simpleView={false}