forked from dani-garcia/bw_web_builds
-
Notifications
You must be signed in to change notification settings - Fork 2
/
oidc_invite.patch
23 lines (20 loc) · 991 Bytes
/
oidc_invite.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Subject: [PATCH] Org invitation fix
---
apps/web/src/app/auth/set-password.component.ts | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/apps/web/src/app/auth/set-password.component.ts b/apps/web/src/app/auth/set-password.component.ts
index ccd329dd64..8c80509af1 100644
--- a/apps/web/src/app/auth/set-password.component.ts
+++ b/apps/web/src/app/auth/set-password.component.ts
@@ -24,7 +24,7 @@ export class SetPasswordComponent extends BaseSetPasswordComponent {
await super.onSetPasswordSuccess(masterKey, userKey, keyPair);
// SSO JIT accepts org invites when setting their MP, meaning
// we can clear the deep linked url for accepting it.
- await this.routerService.getAndClearLoginRedirectUrl();
- await this.acceptOrganizationInviteService.clearOrganizationInvitation();
+ // await this.routerService.getAndClearLoginRedirectUrl();
+ // await this.acceptOrganizationInviteService.clearOrganizationInvitation();
}
}
--
2.39.2