From 4a439bfd2c13337ef4e75c63dd173d28baba0a13 Mon Sep 17 00:00:00 2001 From: Rene Luria Date: Thu, 6 Aug 2026 17:56:46 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20simplify=20player=20birth=20year=20to=20?= =?UTF-8?q?just=20the=20year=20(drop=20'(n=C3=A9=20...)')?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../kotlin/ch/parano/myicek/ui/screens/EventDetailScreen.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composeApp/src/commonMain/kotlin/ch/parano/myicek/ui/screens/EventDetailScreen.kt b/composeApp/src/commonMain/kotlin/ch/parano/myicek/ui/screens/EventDetailScreen.kt index d5ae720..185e91b 100644 --- a/composeApp/src/commonMain/kotlin/ch/parano/myicek/ui/screens/EventDetailScreen.kt +++ b/composeApp/src/commonMain/kotlin/ch/parano/myicek/ui/screens/EventDetailScreen.kt @@ -209,7 +209,7 @@ fun EventDetailScreen( }, supportingContent = { if (player.dob.isNotBlank()) { - Text("(né ${player.dob.take(4)})") + Text(player.dob.take(4)) } }, trailingContent = {