From e8de5e2bfcdcad8fab18ffcfb7b83ae748424d33 Mon Sep 17 00:00:00 2001 From: Alec Rippberger Date: Mon, 21 Oct 2024 09:29:30 -0500 Subject: [PATCH] Hide back button on init --- libs/auth/src/angular/login/login.component.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/auth/src/angular/login/login.component.ts b/libs/auth/src/angular/login/login.component.ts index 5913cef97d..3022b2c023 100644 --- a/libs/auth/src/angular/login/login.component.ts +++ b/libs/auth/src/angular/login/login.component.ts @@ -476,6 +476,8 @@ export class LoginComponent implements OnInit, OnDestroy { } private async defaultOnInit(): Promise { + this.loginComponentService.showBackButton(false); + // If there's an existing org invite, use it to get the password policies const orgPolicies = await this.loginComponentService.getOrgPolicies();