Clean up excessive linebreaks

This commit is contained in:
Angelo Stavrow 2020-07-28 13:46:20 -04:00
parent 1c027c98dc
commit f4d7790a23
No known key found for this signature in database
GPG Key ID: 1A49C7064E060EEE

View File

@ -9,11 +9,7 @@ struct ContentView: View {
.frame(maxHeight: .infinity) .frame(maxHeight: .infinity)
.navigationTitle("Posts") .navigationTitle("Posts")
.toolbar { .toolbar {
NavigationLink( NavigationLink(destination: PostEditor(post: Post())) {
destination: PostEditor(
post: Post()
)
) {
Image(systemName: "plus") Image(systemName: "plus")
} }
} }