From e5dc6fe032d5db3d2a6f1afe379b983c1841467e Mon Sep 17 00:00:00 2001 From: Lumaa Date: Mon, 22 Jan 2024 06:48:31 +0100 Subject: [PATCH] Fix posting space bug --- Threaded/Data/Navigator.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Threaded/Data/Navigator.swift b/Threaded/Data/Navigator.swift index 8f02198..f729d55 100644 --- a/Threaded/Data/Navigator.swift +++ b/Threaded/Data/Navigator.swift @@ -131,7 +131,7 @@ extension View { switch destination { case .post(let content, let replyId): NavigationStack { - PostingView(initialString: content + " ", replyId: replyId) + PostingView(initialString: content, replyId: replyId) .tint(Color(uiColor: UIColor.label)) } case let .mastodonLogin(logged):