From 0225fde2a59fe0d7aea4b46efa4269e1ce663f48 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Wed, 4 Feb 2026 16:25:40 -0500 Subject: [PATCH] Fixes NIP05 username on Profiles --- .../ui/screen/loggedIn/profile/header/DrawAdditionalInfo.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/profile/header/DrawAdditionalInfo.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/profile/header/DrawAdditionalInfo.kt index 33475090a8..3861347d1d 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/profile/header/DrawAdditionalInfo.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/profile/header/DrawAdditionalInfo.kt @@ -242,7 +242,7 @@ fun DisplayNip05ProfileStatus( if (nip05State.nip05.name != "_") { Text( - text = "$user@", + text = "${nip05State.nip05.name}@", color = MaterialTheme.colorScheme.primary, modifier = Modifier.padding(top = 1.dp, bottom = 1.dp), maxLines = 1,