summaryrefslogtreecommitdiff
path: root/Hutch/Views/Settings
diff options
context:
space:
mode:
Diffstat (limited to 'Hutch/Views/Settings')
-rw-r--r--Hutch/Views/Settings/SettingsView.swift14
1 files changed, 13 insertions, 1 deletions
diff --git a/Hutch/Views/Settings/SettingsView.swift b/Hutch/Views/Settings/SettingsView.swift
index f8cc0bd..44b3ba5 100644
--- a/Hutch/Views/Settings/SettingsView.swift
+++ b/Hutch/Views/Settings/SettingsView.swift
@@ -264,10 +264,22 @@ private struct AboutView: View {
get: { appState.isDebugModeEnabled },
set: { appState.isDebugModeEnabled = $0 }
))
+
+ NavigationLink {
+ HomePrototypeView()
+ } label: {
+ SwiftUI.Label("Home Prototype", systemImage: "house")
+ }
+
+ NavigationLink {
+ WorkPrototypeView()
+ } label: {
+ SwiftUI.Label("Work Prototype", systemImage: "tray.full")
+ }
} header: {
Text("Developer")
} footer: {
- Text("Shows raw API payloads and diagnostic details on builds and tickets screens. This stays hidden until explicitly enabled.")
+ Text("Shows raw API payloads and diagnostic details on builds and tickets screens. Home Prototype explores the dashboard structure, while Work Prototype evaluates the personal queue surface. This stays hidden until explicitly enabled.")
}
}
}