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} )}