diff --git a/Rosetta/Features/Chats/ChatList/ChatListView.swift b/Rosetta/Features/Chats/ChatList/ChatListView.swift index 51492ce..255f87c 100644 --- a/Rosetta/Features/Chats/ChatList/ChatListView.swift +++ b/Rosetta/Features/Chats/ChatList/ChatListView.swift @@ -360,12 +360,8 @@ private struct ToolbarTitleView: View { var body: some View { let state = ProtocolManager.shared.connectionState let title: String = switch state { - case .disconnected: "Connecting..." - case .connecting: "Connecting..." - case .connected: "Connected" - case .handshaking: "Authenticating..." - case .deviceVerificationRequired: "Device Verification..." case .authenticated: "Chats" + default: "Connecting..." } Text(title) .font(.system(size: 17, weight: .semibold))