diff options
Diffstat (limited to 'Hotline/macOS/MessageBoardView.swift')
| -rw-r--r-- | Hotline/macOS/MessageBoardView.swift | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Hotline/macOS/MessageBoardView.swift b/Hotline/macOS/MessageBoardView.swift index 660ca05..2bd3713 100644 --- a/Hotline/macOS/MessageBoardView.swift +++ b/Hotline/macOS/MessageBoardView.swift @@ -12,8 +12,8 @@ struct MessageBoardView: View { if model.access?.contains(.canReadMessageBoard) != false { ScrollView { LazyVStack(alignment: .leading) { - ForEach(model.messageBoard, id: \.self) { - Text(LocalizedStringKey($0.convertLinksToMarkdown())) + ForEach(model.messageBoard, id: \.self) { msg in + Text(LocalizedStringKey(msg)) .tint(Color("Link Color")) .lineLimit(100) .lineSpacing(4) |