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

@ -4,9 +4,9 @@
import React from 'react';
import { take } from 'lodash';
import { Emojify } from './conversation/Emojify';
import { Intl } from './Intl';
import type { LocalizerType } from '../types/Util';
import { UserText } from './UserText';
type PropsType = {
i18n: LocalizerType;
@ -23,7 +23,7 @@ export function SharedGroupNames({
// We cannot guarantee uniqueness of group names
// eslint-disable-next-line react/no-array-index-key
<strong key={i} className={nameClassName}>
<Emojify text={group} />
<UserText text={group} />
</strong>
));