Fixes NIP05 username on Profiles

This commit is contained in:
Vitor Pamplona
2026-02-04 16:25:40 -05:00
parent e6f7a543cd
commit 0225fde2a5
@@ -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,