From 205c8ea9b2c6dfa62bc8b2342d1aa71e2da7d6ac Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Tue, 14 Apr 2026 10:42:05 -0500 Subject: fix: remove prototype screens from developer menu - removed prototype screens - limited Recent section to 3 items - added initial support for tips Fixes: https://todo.sr.ht/~ccleberg/hutch/65 --- Hutch/App/RootView.swift | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Hutch/App/RootView.swift') 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): -- cgit v1.2.3