BIT-2046 Fix passkey creation date display (#1161)

This commit is contained in:
Patrick Honkonen 2024-03-19 18:27:55 -04:00 committed by Álison Fernandes
parent 232ffe93ca
commit 0f581e6e21
2 changed files with 2 additions and 2 deletions

View file

@ -104,7 +104,7 @@ fun VaultItemLoginContent(
item {
Spacer(modifier = Modifier.height(8.dp))
Fido2CredentialField(
creationDate = creationDate.toString(),
creationDate = creationDate.invoke(),
modifier = Modifier
.fillMaxWidth()
.padding(horizontal = 16.dp),

View file

@ -1346,7 +1346,7 @@ class VaultItemScreenTest : BaseComposeTest() {
}
composeTestRule
.onNodeWithText(text = DEFAULT_PASSKEY.toString(), substring = true)
.onNodeWithText(text = "Created 3/13/24, 3:56 PM")
.assertIsDisplayed()
}