From c0068f11c51bb587c16dfacb73629b3c6fb67fc8 Mon Sep 17 00:00:00 2001 From: Dustin Mierau Date: Wed, 6 Dec 2023 13:52:20 -0800 Subject: Further work on UI organization --- Hotline/Views/HotlineView.swift | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'Hotline/Views/HotlineView.swift') diff --git a/Hotline/Views/HotlineView.swift b/Hotline/Views/HotlineView.swift index 713691f..f950dd7 100644 --- a/Hotline/Views/HotlineView.swift +++ b/Hotline/Views/HotlineView.swift @@ -6,14 +6,7 @@ struct HotlineView: View { @Environment(HotlineTrackerClient.self) private var tracker var body: some View { - @Bindable var config = appState - - NavigationStack { - TrackerView() - } - .sheet(isPresented: $config.agreementPresented) { - AgreementView(text: hotline.agreement!) - } + TrackerView() } } -- cgit