From b99219f16792be4a06a89f1f32a59f0bf97bba68 Mon Sep 17 00:00:00 2001 From: Dustin Mierau Date: Tue, 5 Dec 2023 15:57:27 -0800 Subject: Experimenting with files. --- Hotline/Views/HotlineView.swift | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'Hotline/Views/HotlineView.swift') diff --git a/Hotline/Views/HotlineView.swift b/Hotline/Views/HotlineView.swift index fe67f79..713691f 100644 --- a/Hotline/Views/HotlineView.swift +++ b/Hotline/Views/HotlineView.swift @@ -5,20 +5,15 @@ struct HotlineView: View { @Environment(HotlineClient.self) private var hotline @Environment(HotlineTrackerClient.self) private var tracker - @State private var isTrackerVisible = true - var body: some View { @Bindable var config = appState NavigationStack { - ServerView() + TrackerView() } .sheet(isPresented: $config.agreementPresented) { AgreementView(text: hotline.agreement!) } - .sheet(isPresented: $config.trackerPresented) { - TrackerView() - } } } -- cgit