This commit is contained in:
Jamie Kyle 2023-04-20 10:03:43 -07:00 committed by GitHub
parent 1f2cde6d04
commit 0e490542a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
196 changed files with 2117 additions and 1217 deletions

View file

@ -6,8 +6,8 @@ import type { ConversationType } from '../../state/ducks/conversations';
import type { LocalizerType } from '../../types/Util';
import type { UUIDStringType } from '../../types/UUID';
import { Avatar, AvatarSize } from '../Avatar';
import { Emojify } from '../conversation/Emojify';
import { ListTile } from '../ListTile';
import { UserText } from '../UserText';
export enum DisabledReason {
AlreadyMember = 'already-member',
@ -66,8 +66,8 @@ export function GroupListItem({
badge={undefined}
/>
}
title={<Emojify text={group.title} />}
subtitle={<Emojify text={messageText} />}
title={<UserText text={group.title} />}
subtitle={<UserText text={messageText} />}
onClick={() => onSelectGroup(group.id)}
/>
);