From f41ad0bcf81aac433bc048e9af0f02d282110df9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=D0=A5=D0=B0=D0=BB=D0=B8=D0=BC=D0=BE=D0=B2=20=D0=A0=D1=83?=
=?UTF-8?q?=D1=81=D1=82=D0=B0=D0=BC?=
Date: Sun, 5 Apr 2026 00:11:10 +0300
Subject: [PATCH] =?UTF-8?q?=D0=9C=D0=B5=D0=BB=D0=BA=D0=B8=D0=B5=20=D0=BF?=
=?UTF-8?q?=D1=80=D0=B0=D0=B2=D0=BA=D0=B8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
client-web/src/core/presentation/layouts/SideMenu.tsx | 2 +-
.../src/modules/chats/presentation/components/ChatListItem.tsx | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/client-web/src/core/presentation/layouts/SideMenu.tsx b/client-web/src/core/presentation/layouts/SideMenu.tsx
index 6b3dc68..4a373c4 100644
--- a/client-web/src/core/presentation/layouts/SideMenu.tsx
+++ b/client-web/src/core/presentation/layouts/SideMenu.tsx
@@ -143,7 +143,7 @@ export default function SideMenu({ isOpen, onClose, onOpenProfile }: SideMenuPro
{ icon: User, label: t('myProfile'), onClick: () => { onClose(); onOpenProfile(); } },
{ icon: Users, label: t('friends'), onClick: () => changeView('friends'), badge: friendRequests.length > 0 ? friendRequests.length : undefined },
- { icon: Settings, label: t('settings'), onClick: () => changeView('settings') },
+
{ divider: true },
{ icon: Info, label: t('aboutApp'), subtitle: 'Knot Messenger v1.0', onClick: () => changeView('about') },
];
diff --git a/client-web/src/modules/chats/presentation/components/ChatListItem.tsx b/client-web/src/modules/chats/presentation/components/ChatListItem.tsx
index eb12ac7..5980241 100644
--- a/client-web/src/modules/chats/presentation/components/ChatListItem.tsx
+++ b/client-web/src/modules/chats/presentation/components/ChatListItem.tsx
@@ -186,7 +186,7 @@ function ChatListItem({ chat, isActive }: ChatListItemProps) {
{chat.unreadCount > 0 && !isActive && (
-
+
{chat.unreadCount}
)}