[PM-24206] Fix filtered verification code search (#5619)

This commit is contained in:
Patrick Honkonen
2025-07-30 15:34:57 +00:00
committed by GitHub
parent 40dff74d3f
commit cf896d6bf1
@@ -125,7 +125,7 @@ private fun CipherListView.filterBySearchType(
}
is SearchTypeData.Vault.SshKeys -> type is CipherListViewType.SshKey && deletedDate == null
is SearchTypeData.Vault.VerificationCodes -> organizationUseTotp && deletedDate == null
is SearchTypeData.Vault.VerificationCodes -> login?.totp != null && deletedDate == null
is SearchTypeData.Vault.Trash -> deletedDate != null
}