diff options
| author | Dustin Mierau <dustin@mierau.me> | 2025-10-24 23:02:12 -0700 |
|---|---|---|
| committer | Dustin Mierau <dustin@mierau.me> | 2025-10-24 23:02:12 -0700 |
| commit | fefede829c12d9f69db72d70231291d973b0c1a2 (patch) | |
| tree | e51caa817df6fb00063c5179ff0a8a77753a21ae /Hotline/iOS | |
| parent | cf113ea053334175b93770b025c1f7d22eda6eab (diff) | |
Further polish on chat. Try not to persist back to back disconnect messages.
Diffstat (limited to 'Hotline/iOS')
| -rw-r--r-- | Hotline/iOS/ChatView.swift | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/Hotline/iOS/ChatView.swift b/Hotline/iOS/ChatView.swift index 0ad41e0..e320dbf 100644 --- a/Hotline/iOS/ChatView.swift +++ b/Hotline/iOS/ChatView.swift @@ -52,17 +52,6 @@ struct ChatView: View { .frame(maxWidth: .infinity) .padding() } - else if msg.type == .status { - HStack { - Spacer() - Text(msg.text) - .lineLimit(1) - .truncationMode(.middle) - .opacity(0.3) - Spacer() - } - .padding() - } else if msg.type == .signOut { HStack { Spacer() |