1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-01-06 18:57:56 +01:00

Removed self-hosted check from TDE SSO config. (#5837)

This commit is contained in:
Todd Martin 2023-07-14 11:32:04 -04:00 committed by GitHub
parent 1d71d99b85
commit 0696252fb3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -239,7 +239,7 @@ export class SsoComponent implements OnInit, OnDestroy {
FeatureFlag.TrustedDeviceEncryption
);
this.showTdeOptions = tdeFeatureFlag && !this.platformUtilsService.isSelfHost();
this.showTdeOptions = tdeFeatureFlag;
// If the tde flag is not enabled, continue showing the key connector options to keep the UI the same
// Once the flag is removed, we can rely on the platformUtilsService.isSelfHost() check alone
this.showKeyConnectorOptions = !tdeFeatureFlag || this.platformUtilsService.isSelfHost();