Fix unsubscribing from channel

This commit is contained in:
Arkadiusz Fal 2021-12-17 20:53:24 +01:00
parent 201e91a3cc
commit f609ed1ed4

View File

@ -160,6 +160,17 @@ struct ChannelVideosView: View {
}
}
}
.alert(isPresented: $navigation.presentingUnsubscribeAlert) {
Alert(
title: Text(
"Are you sure you want to unsubscribe from \(channel.name)?"
),
primaryButton: .destructive(Text("Unsubscribe")) {
subscriptions.unsubscribe(channel.id)
},
secondaryButton: .cancel()
)
}
}
private var contentItem: ContentItem {