diff --git a/packages/ui/src/components/ListItem/ChannelListItem.tsx b/packages/ui/src/components/ListItem/ChannelListItem.tsx index 357433072c..4614e435a0 100644 --- a/packages/ui/src/components/ListItem/ChannelListItem.tsx +++ b/packages/ui/src/components/ListItem/ChannelListItem.tsx @@ -78,11 +78,12 @@ export function ChannelListItem({ {title} {customSubtitle ? ( {customSubtitle} - ) : ( + ) : (model.type === 'dm' || model.type === 'groupDm') && + utils.hasNickname(model.members?.[0]?.contact) ? ( {subtitle} - )} + ) : null} {model.lastPost && !model.isDmInvite && ( 0; +}