Hide subscription section from tip jar when there are no products

This commit is contained in:
Shadowfacts 2024-05-23 14:11:54 -04:00
parent 2ccf028bc2
commit d6be6f14dc
1 changed files with 3 additions and 1 deletions

View File

@ -84,7 +84,9 @@ struct TipJarView: View {
private var productsView: some View {
if isLoaded {
VStack {
supporterSubscriptions
if !supporterProducts.isEmpty {
supporterSubscriptions
}
tipPurchases