PM-34238: bug: Hide archived ciphers on VerificationCodes Screen (#6767)

This commit is contained in:
David Perez
2026-04-06 15:22:56 -05:00
committed by GitHub
parent 8c5c145f34
commit c38745cb01

View File

@@ -191,7 +191,8 @@ class VaultRepositoryImpl(
.filter {
it.type is CipherListViewType.Login &&
!it.login?.totp.isNullOrBlank() &&
it.deletedDate == null
it.deletedDate == null &&
it.archivedDate == null
}
.toFilteredList(vaultFilterType)
}