From eeb12de93c4f6fcc5e2f2d58c2061ce84f839cf7 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Wed, 1 Apr 2026 22:20:43 -0500 Subject: standardize nav labels --- Hutch/App/RootView.swift | 2 +- Hutch/Views/Lists/MailingListListView.swift | 2 +- Hutch/Views/More/MoreView.swift | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'Hutch') diff --git a/Hutch/App/RootView.swift b/Hutch/App/RootView.swift index 8d4eef1..f0bde89 100644 --- a/Hutch/App/RootView.swift +++ b/Hutch/App/RootView.swift @@ -89,7 +89,7 @@ struct RootView: View { } .tag(AppState.Tab.tickets) .tabItem { - Label("Tickets", systemImage: "ticket") + Label("Trackers", systemImage: "checklist") } NavigationStack(path: $buildsPath) { diff --git a/Hutch/Views/Lists/MailingListListView.swift b/Hutch/Views/Lists/MailingListListView.swift index 5b8a7b0..eca7343 100644 --- a/Hutch/Views/Lists/MailingListListView.swift +++ b/Hutch/Views/Lists/MailingListListView.swift @@ -115,7 +115,7 @@ struct MailingListListView: View { SRHTLoadingStateView(message: "Loading mailing lists…") } } - .navigationTitle("Lists") + .navigationTitle("Mailing Lists") .task { if viewModel == nil { let vm = MailingListListViewModel(client: appState.client) diff --git a/Hutch/Views/More/MoreView.swift b/Hutch/Views/More/MoreView.swift index c981432..3e2a019 100644 --- a/Hutch/Views/More/MoreView.swift +++ b/Hutch/Views/More/MoreView.swift @@ -15,7 +15,7 @@ struct MoreView: View { List { Section { NavigationLink(value: MoreRoute.lists) { - Label("Lists", systemImage: "list.bullet.rectangle") + Label("Mailing Lists", systemImage: "list.bullet.rectangle") } NavigationLink(value: MoreRoute.pastes) { -- cgit v1.2.3