From da08504b346e0590777a13b9747835e028fe4add Mon Sep 17 00:00:00 2001 From: ialokim <ialokim@mailbox.org> Date: Sat, 30 Oct 2021 13:45:05 +0200 Subject: [PATCH] remove colon in introduction string --- .../briar/desktop/introduction/ContactDrawerMakeIntro.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/org/briarproject/briar/desktop/introduction/ContactDrawerMakeIntro.kt b/src/main/kotlin/org/briarproject/briar/desktop/introduction/ContactDrawerMakeIntro.kt index b140e1fa65..68b78c670f 100644 --- a/src/main/kotlin/org/briarproject/briar/desktop/introduction/ContactDrawerMakeIntro.kt +++ b/src/main/kotlin/org/briarproject/briar/desktop/introduction/ContactDrawerMakeIntro.kt @@ -46,7 +46,7 @@ fun ContactDrawerMakeIntro( Icon(Icons.Filled.Close, "close make intro screen") } Text( - text = "Introduce " + viewModel.firstContact.value!!.author.name + " to:", + text = "Introduce ${viewModel.firstContact.value!!.author.name} to", fontSize = 16.sp, modifier = Modifier.align(Alignment.CenterVertically) ) -- GitLab