diff --git a/ts/components/ConversationListItem.tsx b/ts/components/ConversationListItem.tsx index eaa14b2a9..7ac984efe 100644 --- a/ts/components/ConversationListItem.tsx +++ b/ts/components/ConversationListItem.tsx @@ -90,6 +90,33 @@ const HeaderItem = (props: { iconSize={SessionIconSize.Tiny} /> ) : null; + + + const NotificationSettingIcon = () => { + if (!isMessagesSection) { + return null; + } + + switch (currentNotificationSetting) { + case ('all'): + return null; + case ('disabled'): + return + case ('mentions_only'): + return + default: + return null; + } + } + return (
+ + {pinIcon} + + {unreadCountDiv} {atSymbol} { @@ -292,6 +323,8 @@ const ConversationListItem = (props: Props) => { conversationId={conversationId} name={name} profileName={profileName} + currentNotificationSetting={currentNotificationSetting} + /> />