Remove duplicate ToolbarItemGroup in Mac app

This commit is contained in:
Angelo Stavrow 2020-12-16 11:35:04 -05:00
parent 851a0b6465
commit 09131d5873
No known key found for this signature in database
GPG Key ID: 1A49C7064E060EEE

View File

@ -84,24 +84,6 @@ struct PostListView: View {
showAllPosts: showAllPosts,
postCount: $postCount
)
.toolbar {
ToolbarItemGroup(placement: .primaryAction) {
if let selectedPost = model.selectedPost {
ActivePostToolbarView(activePost: selectedPost)
.alert(isPresented: $model.isPresentingNetworkErrorAlert, content: {
Alert(
title: Text("Connection Error"),
message: Text("""
There is no internet connection at the moment. Please reconnect or try again later.
"""),
dismissButton: .default(Text("OK"), action: {
model.isPresentingNetworkErrorAlert = false
})
)
})
}
}
}
.onDisappear {
DispatchQueue.main.async {
self.model.selectedCollection = nil