We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 965c39a commit 6ba8b32Copy full SHA for 6ba8b32
Packages/App/Sources/AppUIMain/Views/Diagnostics/DiagnosticsView.swift
@@ -77,6 +77,9 @@ struct DiagnosticsView: View {
77
78
var body: some View {
79
Form {
80
+ if iapManager.isBeta {
81
+ betaSection
82
+ }
83
liveLogSection
84
openVPNSection
85
tunnelLogsSection
@@ -99,6 +102,13 @@ struct DiagnosticsView: View {
99
102
}
100
103
101
104
private extension DiagnosticsView {
105
+ var betaSection: some View {
106
+ Group {
107
+ Text("This is a beta build")
108
109
+ .themeSection(header: "Beta")
110
111
+
112
var liveLogSection: some View {
113
Group {
114
navLink(Strings.Views.Diagnostics.Rows.app, to: .app(title: Strings.Views.Diagnostics.Rows.app))
0 commit comments