diff --git a/apps/web/src/app/organizations/members/components/reset-password.component.ts b/apps/web/src/app/organizations/members/components/reset-password.component.ts index 10a9e74282..a411377ddf 100644 --- a/apps/web/src/app/organizations/members/components/reset-password.component.ts +++ b/apps/web/src/app/organizations/members/components/reset-password.component.ts @@ -109,7 +109,7 @@ export class ResetPasswordComponent implements OnInit, OnDestroy { return false; } - if (this.newPassword.length < 8) { + if (this.newPassword.length < Utils.minimumPasswordLength) { this.platformUtilsService.showToast( "error", this.i18nService.t("errorOccurred"),