krz/hutch

an ios client for sourcehut

clone: git clone https://gitbay.org/krz/hutch.git

6cf84df1ed8a67f05e9f30bc4f7c8c3e525401d9

verified · cmc

author: Christian Cleberg <hello@cleberg.net> · 2026-04-12T04:42:23Z

ensure clicking into status from home returns to home
 Hutch/Views/Home/HomeView.swift | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Hutch/Views/Home/HomeView.swift b/Hutch/Views/Home/HomeView.swift
index 695a31d..ab0cdf8 100644
--- a/Hutch/Views/Home/HomeView.swift
+++ b/Hutch/Views/Home/HomeView.swift
@@ -84,8 +84,8 @@ struct HomeView: View {
     private func systemStatusBannerSection(_ viewModel: HomeViewModel) -> some View {
         if let bannerTitle = viewModel.systemStatusBannerTitle {
             Section {
-                Button {
-                    appState.openSystemStatus()
+                NavigationLink {
+                    SystemStatusView()
                 } label: {
                     HomeSystemStatusBanner(title: bannerTitle)
                 }