We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e1659e commit b55d561Copy full SHA for b55d561
package/src/components/MessageList/MessageList.tsx
@@ -553,7 +553,8 @@ const MessageListWithContext = <
553
}
554
555
const isCurrentMessageUnread = isMessageUnread(index);
556
- const showUnreadUnderlay = isCurrentMessageUnread && scrollToBottomButtonVisible;
+ const showUnreadUnderlay =
557
+ !channel.muteStatus().muted && isCurrentMessageUnread && scrollToBottomButtonVisible;
558
const insertInlineUnreadIndicator = showUnreadUnderlay && !isMessageUnread(index + 1); // show only if previous message is read
559
560
if (message.type === 'system') {
0 commit comments