Skip to content

Commit

Permalink
ES-1626
Browse files Browse the repository at this point in the history
Signed-off-by: venthon <[email protected]>
  • Loading branch information
venthon committed Sep 10, 2024
1 parent 66388a6 commit 9e0af36
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const ResetPasswordPage = ({ settings }: ResetPasswordPageProps) => {
// Step 1 - UserInfo
yup.object({
username: validateUsername(settings),
fullname: validateFullName(settings, t),
fullname: validateFullName(settings,t),
captchaToken: validateCaptchaToken(settings),
}),
// Step 2 - Otp
Expand Down
2 changes: 1 addition & 1 deletion signup-ui/src/pages/SignUpPage/SignUpPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export const SignUpPage = ({ settings }: SignUpPageProps) => {
// Step 4 - Account Setup Validation
yup.object({
username: yup.string(),
fullNameInKhmer: validateFullName(settings, t),
fullNameInKhmer: validateFullName(settings,t),
password: validatePassword(settings),
confirmPassword: validateConfirmPassword("password", settings, true),
consent: yup.bool().oneOf([true], t("terms_and_conditions_validation")),
Expand Down

0 comments on commit 9e0af36

Please sign in to comment.