fix dev mode chat notification

This commit is contained in:
PhilReact 2025-01-22 03:50:29 +02:00
parent 74b682ce38
commit d9f34486a6

View File

@ -266,14 +266,14 @@ export const AppsDevMode = ({ mode, setMode, show , myName, goToHome, setDesktop
}} }}
> >
<IconWrapper <IconWrapper
color={desktopViewMode === 'chat' ? 'white' :"rgba(250, 250, 250, 0.5)"} color={(hasUnreadDirects || hasUnreadGroups) ? "var(--unread)" : desktopViewMode === 'chat' ? 'white' :"rgba(250, 250, 250, 0.5)"}
label="Chat" label="Chat"
disableWidth disableWidth
> >
<MessagingIcon <MessagingIcon
height={30} height={30}
color={ color={
hasUnreadDirects (hasUnreadDirects || hasUnreadGroups)
? "var(--unread)" ? "var(--unread)"
: desktopViewMode === 'chat' : desktopViewMode === 'chat'
? "white" ? "white"