diff options
Diffstat (limited to 'Hotline/Views/HotlineView.swift')
| -rw-r--r-- | Hotline/Views/HotlineView.swift | 7 |
1 files changed, 1 insertions, 6 deletions
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() - } } } |