1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-10 13:40:06 +00:00

PM-18654 - Desktop Login Component - listenForUnauthUiRefreshFlagChanges used base component destroy which was overridden and not called so the subscription stayed active. During initial login, this would emit (even on other components) and force navigation to the root and interrupt the SSO process while JIT provisioning users - often before the Org SSO identifier could be set into state.

This commit is contained in:
Jared Snider
2025-02-28 09:35:19 -05:00
parent 0ee2e0bf93
commit 21f35bd4a2

View File

@@ -156,7 +156,7 @@ export class LoginComponentV1 extends BaseLoginComponent implements OnInit, OnDe
});
}
}),
takeUntil(this.destroy$),
takeUntil(this.componentDestroyed$),
)
.subscribe();
}