From feafe02a6c4800c253c273157e16c23f43be9b71 Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Fri, 18 Oct 2024 10:20:45 +1100 Subject: [PATCH] Fixed a bug where the icon on the NewMessageScreen wasn't rendering --- Session/Home/New Conversation/NewMessageScreen.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Session/Home/New Conversation/NewMessageScreen.swift b/Session/Home/New Conversation/NewMessageScreen.swift index a142a434a..d4d5db363 100644 --- a/Session/Home/New Conversation/NewMessageScreen.swift +++ b/Session/Home/New Conversation/NewMessageScreen.swift @@ -148,7 +148,7 @@ struct EnterAccountIdScreen: View { ) ) { ZStack { - Text("messageNewDescriptionMobile".localized().appending("\(Image(systemName: "questionmark.circle"))")) + (Text("messageNewDescriptionMobile".localized()) + Text(Image(systemName: "questionmark.circle"))) .font(.system(size: Values.verySmallFontSize)) .foregroundColor(themeColor: .textSecondary) .multilineTextAlignment(.center)