summaryrefslogtreecommitdiff
path: root/Hutch/App/RootView.swift
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-04-14 10:42:05 -0500
committerChristian Cleberg <[email protected]>2026-04-14 10:42:05 -0500
commit205c8ea9b2c6dfa62bc8b2342d1aa71e2da7d6ac (patch)
treee7e9b8190ffc15d3cd3e696da4c8acf8c472a193 /Hutch/App/RootView.swift
parentd6968ea122d910b432bd539cf2fa3d1cee962fdb (diff)
downloadhutch-205c8ea9b2c6dfa62bc8b2342d1aa71e2da7d6ac.tar.gz
hutch-205c8ea9b2c6dfa62bc8b2342d1aa71e2da7d6ac.tar.bz2
hutch-205c8ea9b2c6dfa62bc8b2342d1aa71e2da7d6ac.zip
fix: remove prototype screens from developer menuv3.1.6
- removed prototype screens - limited Recent section to 3 items - added initial support for tips Fixes: https://todo.sr.ht/~ccleberg/hutch/65
Diffstat (limited to 'Hutch/App/RootView.swift')
-rw-r--r--Hutch/App/RootView.swift3
1 files changed, 3 insertions, 0 deletions
diff --git a/Hutch/App/RootView.swift b/Hutch/App/RootView.swift
index ed029bb..ac20f0c 100644
--- a/Hutch/App/RootView.swift
+++ b/Hutch/App/RootView.swift
@@ -336,6 +336,7 @@ enum MoreRoute: Hashable {
case profile
case systemStatus
case settings
+ case about
case mailingList(InboxMailingListReference)
case thread(InboxThreadSummary)
case manPageBrowser
@@ -363,6 +364,8 @@ private struct MoreNavigationRoot: View {
SystemStatusView()
case .settings:
SettingsView()
+ case .about:
+ AboutView()
case .mailingList(let mailingList):
MailingListDetailView(mailingList: mailingList)
case .thread(let thread):