Skip to content

Commit

Permalink
Update packages/esm-system-admin-app/src/change-password-modal/change…
Browse files Browse the repository at this point in the history
…-password-modal.component.tsx

Co-authored-by: Dennis Kigen <[email protected]>
  • Loading branch information
jnsereko and denniskigen authored Feb 6, 2024
1 parent a2feec6 commit 31a16d5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default function ChangePasswordModal({ close }: ChangePasswordModalProps)
} else if (!uppercasePassword) {
errMsg = t('atLeastOneUppercaseLetterRequired', 'Your password must contain at least one uppercase letter (A-Z)');

Check failure on line 47 in packages/esm-system-admin-app/src/change-password-modal/change-password-modal.component.tsx

View workflow job for this annotation

GitHub Actions / build

Replace `'atLeastOneUppercaseLetterRequired',·'Your·password·must·contain·at·least·one·uppercase·letter·(A-Z)'` with `⏎············'atLeastOneUppercaseLetterRequired',⏎············'Your·password·must·contain·at·least·one·uppercase·letter·(A-Z)',⏎··········`
} else if (!lowercasePassword) {
errMsg = t('atLeastOneLowercase', 'At least one Lowercase');
errMsg = t('atLeastOneLowercaseLetterRequired', 'Your password must contain at least one lowercase letter (a-z)');

Check failure on line 49 in packages/esm-system-admin-app/src/change-password-modal/change-password-modal.component.tsx

View workflow job for this annotation

GitHub Actions / build

Replace `'atLeastOneLowercaseLetterRequired',·'Your·password·must·contain·at·least·one·lowercase·letter·(a-z)'` with `⏎············'atLeastOneLowercaseLetterRequired',⏎············'Your·password·must·contain·at·least·one·lowercase·letter·(a-z)',⏎··········`
} else if (!digitsPassword) {
errMsg = t('atLeastOneDigit', 'At least one digit');
} else if (!minLengthPassword) {
Expand Down

0 comments on commit 31a16d5

Please sign in to comment.