From 0696252fb3d420337966fcadf541b960a48446ef Mon Sep 17 00:00:00 2001 From: Todd Martin <106564991+trmartin4@users.noreply.github.com> Date: Fri, 14 Jul 2023 11:32:04 -0400 Subject: [PATCH] Removed self-hosted check from TDE SSO config. (#5837) --- bitwarden_license/bit-web/src/app/auth/sso/sso.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitwarden_license/bit-web/src/app/auth/sso/sso.component.ts b/bitwarden_license/bit-web/src/app/auth/sso/sso.component.ts index 1ea6c6dd79..e159d4744b 100644 --- a/bitwarden_license/bit-web/src/app/auth/sso/sso.component.ts +++ b/bitwarden_license/bit-web/src/app/auth/sso/sso.component.ts @@ -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();