fix: simplify player birth year to just the year (drop '(né ...)')

This commit is contained in:
2026-08-06 17:56:46 +02:00
parent 4bc40e9128
commit 4a439bfd2c
@@ -209,7 +209,7 @@ fun EventDetailScreen(
},
supportingContent = {
if (player.dob.isNotBlank()) {
Text("(né ${player.dob.take(4)})")
Text(player.dob.take(4))
}
},
trailingContent = {