Skip to content

Commit

Permalink
chore: add missing parameters after kalium update
Browse files Browse the repository at this point in the history
  • Loading branch information
vitorhugods committed May 24, 2024
1 parent 9814265 commit ab3d4c4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,9 @@ fun PreviewEndToEndIdentityCertificateItem() {
status = CertificateStatus.VALID,
serialNumber = "e5:d5:e6:75:7e:04:86:07:14:3c:a0:ed:9a:8d:e4:fd",
certificateDetail = "",
endAt = Instant.DISTANT_FUTURE
endAt = Instant.DISTANT_FUTURE,
userHandle = "userHandle",
thumbprint = "thumbprint",
),
isLoadingCertificate = false,
enrollE2eiCertificate = {},
Expand All @@ -220,7 +222,9 @@ fun PreviewEndToEndIdentityCertificateSelfItem() {
status = CertificateStatus.VALID,
serialNumber = "e5:d5:e6:75:7e:04:86:07:14:3c:a0:ed:9a:8d:e4:fd",
certificateDetail = "",
endAt = Instant.DISTANT_FUTURE
endAt = Instant.DISTANT_FUTURE,
userHandle = "userHandle",
thumbprint = "thumbprint",
),
isLoadingCertificate = false,
enrollE2eiCertificate = {},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ data class DeviceDetailsState(
status = CertificateStatus.EXPIRED,
serialNumber = "",
certificateDetail = "",
endAt = Instant.DISTANT_FUTURE
endAt = Instant.DISTANT_FUTURE,
userHandle = "",
thumbprint = ""
),
val canBeRemoved: Boolean = false,
val isLoadingCertificate: Boolean = false,
Expand Down

0 comments on commit ab3d4c4

Please sign in to comment.