diff --git a/Sources/StreamChatUI/ChatChannelList/ChatChannelUnreadCountView.swift b/Sources/StreamChatUI/ChatChannelList/ChatChannelUnreadCountView.swift index c80466b3eb5..b9adb8fe7e2 100644 --- a/Sources/StreamChatUI/ChatChannelList/ChatChannelUnreadCountView.swift +++ b/Sources/StreamChatUI/ChatChannelList/ChatChannelUnreadCountView.swift @@ -48,7 +48,7 @@ open class _ChatChannelUnreadCountView: _View, ThemeP } override open func updateContent() { - isHidden = content.mentionedMessages == 0 && content.messages == 0 + isHidden = content.messages == 0 unreadCountLabel.text = String(content.messages) } }