diff --git a/apps/browser/src/vault/popup/components/vault/vault-items.component.ts b/apps/browser/src/vault/popup/components/vault/vault-items.component.ts index b089f37ea1d..62f0aa14c69 100644 --- a/apps/browser/src/vault/popup/components/vault/vault-items.component.ts +++ b/apps/browser/src/vault/popup/components/vault/vault-items.component.ts @@ -212,7 +212,7 @@ export class VaultItemsComponent extends BaseVaultItemsComponent implements OnIn async launchCipher(cipher: CipherView) { let launchUri: string; - if (cipher.type !== CipherType.Login && cipher.login.canLaunch) { + if (cipher.type === CipherType.Login && cipher.login.canLaunch) { launchUri = cipher.login.launchUri; } else if (cipher.type === CipherType.Fido2Key && cipher.fido2Key.canLaunch) { launchUri = cipher.fido2Key.launchUri;