From dc8e179c100907c943e9b2de910b94cf642706c5 Mon Sep 17 00:00:00 2001 From: senseiGai Date: Wed, 11 Mar 2026 01:43:52 +0500 Subject: [PATCH] =?UTF-8?q?=D0=A3=D0=BD=D0=B8=D1=84=D0=B8=D1=86=D0=B8?= =?UTF-8?q?=D1=80=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8=D0=B5=20=D1=81=D0=BE=D1=81?= =?UTF-8?q?=D1=82=D0=BE=D1=8F=D0=BD=D0=B8=D0=B9=20=D0=B4=D0=BE=20Connectin?= =?UTF-8?q?g...=20=D0=B8=20Chats?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Rosetta/Features/Chats/ChatList/ChatListView.swift | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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))