Skip to content

Commit

Permalink
get rid of typo
Browse files Browse the repository at this point in the history
Signed-off-by: Amndeep Singh Mann <[email protected]>
  • Loading branch information
Amndeep7 committed Dec 30, 2024
1 parent 16c7b44 commit 2e8691b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/backend/src/pipes/password-complexity.pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export function validatePassword(password?: string): string[] {
if (typeof password !== 'string') {
return ['Password must be of type string'];
} else {
return validators.filter(validator => !validator.check(password)).map(validator.name)a;
return validators.filter(validator => !validator.check(password)).map(validator.name);
}
}

Expand Down

0 comments on commit 2e8691b

Please sign in to comment.