Hide donation link in beta
This commit is contained in:
parent
8fbccc6d80
commit
bfc0be45ae
|
@ -29,6 +29,10 @@ import PassepartoutKit
|
|||
import SwiftUI
|
||||
|
||||
struct AboutView: View {
|
||||
|
||||
@EnvironmentObject
|
||||
var iapManager: IAPManager
|
||||
|
||||
let profileManager: ProfileManager
|
||||
|
||||
@Binding
|
||||
|
|
|
@ -35,8 +35,10 @@ extension AboutView {
|
|||
Group {
|
||||
linksLink
|
||||
creditsLink
|
||||
if !iapManager.isRestricted {
|
||||
donateLink
|
||||
}
|
||||
}
|
||||
.themeSection(header: Strings.Views.About.Sections.resources)
|
||||
Section {
|
||||
diagnosticsLink
|
||||
|
|
|
@ -34,7 +34,9 @@ extension AboutView {
|
|||
Section {
|
||||
linksLink
|
||||
creditsLink
|
||||
if !iapManager.isRestricted {
|
||||
donateLink
|
||||
}
|
||||
diagnosticsLink
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue