diff options
Diffstat (limited to 'Hotline/iOS/MessageBoardView.swift')
| -rw-r--r-- | Hotline/iOS/MessageBoardView.swift | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Hotline/iOS/MessageBoardView.swift b/Hotline/iOS/MessageBoardView.swift index 0d3968f..56fd4cc 100644 --- a/Hotline/iOS/MessageBoardView.swift +++ b/Hotline/iOS/MessageBoardView.swift @@ -2,10 +2,10 @@ import SwiftUI struct MessageBoardView: View { @Environment(Hotline.self) private var model: Hotline - + @State private var initialLoadComplete = false @State private var fetched = false - + var body: some View { NavigationStack { ScrollView { @@ -57,14 +57,14 @@ struct MessageBoardView: View { } ToolbarItem(placement: .navigationBarTrailing) { Button { - + } label: { Image(systemName: "square.and.pencil") } } } } - + } } |