summaryrefslogtreecommitdiff
path: root/Hutch
diff options
context:
space:
mode:
Diffstat (limited to 'Hutch')
-rw-r--r--Hutch/Views/Home/HomeView.swift4
1 files 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)
}