diff options
Diffstat (limited to 'src/screens')
-rw-r--r-- | src/screens/Messages/List/ChatListItem.tsx | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/screens/Messages/List/ChatListItem.tsx b/src/screens/Messages/List/ChatListItem.tsx index 0a0f8c575..a7b7e0680 100644 --- a/src/screens/Messages/List/ChatListItem.tsx +++ b/src/screens/Messages/List/ChatListItem.tsx @@ -169,7 +169,7 @@ function ChatListItemReady({ )} </TimeElapsed> )} - {convo.muted && ( + {(convo.muted || moderation.blocked) && ( <Text style={[ a.text_sm, @@ -200,7 +200,8 @@ function ChatListItemReady({ convo.unreadCount > 0 ? a.font_bold : t.atoms.text_contrast_high, - convo.muted && t.atoms.text_contrast_medium, + (convo.muted || moderation.blocked) && + t.atoms.text_contrast_medium, ]}> {lastMessage} </Text> @@ -211,9 +212,10 @@ function ChatListItemReady({ a.absolute, a.rounded_full, { - backgroundColor: convo.muted - ? t.palette.contrast_200 - : t.palette.primary_500, + backgroundColor: + convo.muted || moderation.blocked + ? t.palette.contrast_200 + : t.palette.primary_500, height: 7, width: 7, }, |