Fix typo in SettingsDialog.kt

The expires at field was showing `Expired at`, got confused so
thought to send a patch to fix the typo.
This commit is contained in:
Rohan Verma 2025-06-22 20:34:09 +05:30 committed by GitHub
parent 33c3ee638e
commit 460cf97662
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -173,7 +173,7 @@ fun SettingsDialog(
color = MaterialTheme.colorScheme.onSurfaceVariant,
)
Text(
"Expired at: ${dateFormatter.format(Instant.ofEpochMilli(curHfToken.expiresAtMs))}",
"Expires at: ${dateFormatter.format(Instant.ofEpochMilli(curHfToken.expiresAtMs))}",
style = MaterialTheme.typography.bodyMedium,
color = MaterialTheme.colorScheme.onSurfaceVariant,
)