From 6adcb35dd79f2b1f3e789c9cb906204422d80c17 Mon Sep 17 00:00:00 2001 From: Brandon Maharaj Date: Tue, 28 Feb 2023 02:04:41 -0500 Subject: [PATCH] fix: missing changes (#4832) --- .../members/components/reset-password.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"),