From f4d7790a2340329107113738341303598e356276 Mon Sep 17 00:00:00 2001 From: Angelo Stavrow Date: Tue, 28 Jul 2020 13:46:20 -0400 Subject: [PATCH] Clean up excessive linebreaks --- Shared/Navigation/ContentView.swift | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Shared/Navigation/ContentView.swift b/Shared/Navigation/ContentView.swift index ae9fb98..50cfe34 100644 --- a/Shared/Navigation/ContentView.swift +++ b/Shared/Navigation/ContentView.swift @@ -9,11 +9,7 @@ struct ContentView: View { .frame(maxHeight: .infinity) .navigationTitle("Posts") .toolbar { - NavigationLink( - destination: PostEditor( - post: Post() - ) - ) { + NavigationLink(destination: PostEditor(post: Post())) { Image(systemName: "plus") } }