aboutsummaryrefslogtreecommitdiff
path: root/Hotline/Views/HotlineView.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Hotline/Views/HotlineView.swift')
-rw-r--r--Hotline/Views/HotlineView.swift9
1 files changed, 1 insertions, 8 deletions
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()
}
}