diff options
Diffstat (limited to 'Hutch/Views/Home/HomeView.swift')
| -rw-r--r-- | Hutch/Views/Home/HomeView.swift | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Hutch/Views/Home/HomeView.swift b/Hutch/Views/Home/HomeView.swift index fa7de86..242eeac 100644 --- a/Hutch/Views/Home/HomeView.swift +++ b/Hutch/Views/Home/HomeView.swift @@ -135,8 +135,8 @@ struct HomeView: View { private func buildsSection(_ viewModel: HomeViewModel) -> some View { Section("Builds") { - NavigationLink { - BuildListView() + Button { + appState.navigateToBuildsList() } label: { HomeSummaryRow( title: buildsTitle(viewModel), @@ -146,6 +146,7 @@ struct HomeView: View { emphasis: .monitoring ) } + .buttonStyle(.plain) .themedRow() } } |
