From f6fecf57c78b9993404a26bf6f1b0ff0e3ed9797 Mon Sep 17 00:00:00 2001 From: benya Date: Sun, 8 Mar 2026 11:52:11 +0300 Subject: [PATCH] fix(web): move Contacts access to burger menu only - remove Contacts from top chat tabs - keep contacts screen reachable via burger menu --- web/src/components/ChatList.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/web/src/components/ChatList.tsx b/web/src/components/ChatList.tsx index b3132a6..acc85e7 100644 --- a/web/src/components/ChatList.tsx +++ b/web/src/components/ChatList.tsx @@ -193,9 +193,8 @@ export function ChatList() { return true; }); - const tabs: Array<{ id: "all" | "contacts" | "people" | "groups" | "channels" | "archived"; label: string }> = [ + const tabs: Array<{ id: "all" | "people" | "groups" | "channels" | "archived"; label: string }> = [ { id: "all", label: "All" }, - { id: "contacts", label: "Contacts" }, { id: "people", label: "Люди" }, { id: "groups", label: "Groups" }, { id: "channels", label: "Каналы" },