From 6c0a11c940ab43914d6abd8eb2fdee1ee435c3cc Mon Sep 17 00:00:00 2001 From: rr-bw <102181210+rr-bw@users.noreply.github.com> Date: Tue, 23 Dec 2025 17:04:43 -0800 Subject: [PATCH] [PM-27086] update comments --- .../set-initial-password/set-initial-password.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/angular/src/auth/password-management/set-initial-password/set-initial-password.component.ts b/libs/angular/src/auth/password-management/set-initial-password/set-initial-password.component.ts index f9d9f494184..b395d4def0c 100644 --- a/libs/angular/src/auth/password-management/set-initial-password/set-initial-password.component.ts +++ b/libs/angular/src/auth/password-management/set-initial-password/set-initial-password.component.ts @@ -196,13 +196,13 @@ export class SetInitialPasswordComponent implements OnInit { switch (this.userType) { case SetInitialPasswordUserType.JIT_PROVISIONED_MP_ORG_USER: case SetInitialPasswordUserType.TDE_ORG_USER_RESET_PASSWORD_PERMISSION_REQUIRES_MP: - // Remove wrapping "if" check in PM-28143 + // Remove wrapping "if" check and early return in PM-28143 if (passwordInputResult.newApisFlagEnabled) { await this.setInitialPassword(passwordInputResult); return; } - await this.setInitialPasswordOld(passwordInputResult); + await this.setInitialPasswordOld(passwordInputResult); // remove in PM-28143 break; case SetInitialPasswordUserType.OFFBOARDED_TDE_ORG_USER: