This commit is contained in:
Jamie Kyle
2023-04-20 10:03:43 -07:00
committed by GitHub
parent 1f2cde6d04
commit 0e490542a7
196 changed files with 2117 additions and 1217 deletions

View File

@@ -12,8 +12,8 @@ import { Spinner } from '../../../Spinner';
import type { ConversationType } from '../../../../state/ducks/conversations';
import { RequestState } from '../util';
import { Intl } from '../../../Intl';
import { Emojify } from '../../Emojify';
import { ContactName } from '../../ContactName';
import { UserText } from '../../../UserText';
export type StatePropsType = {
groupTitle: string;
@@ -40,7 +40,7 @@ export function ConfirmAdditionsModal({
'Expected at least one conversation to be selected but none were picked'
);
const groupTitleNode: JSX.Element = <Emojify text={groupTitle} />;
const groupTitleNode: JSX.Element = <UserText text={groupTitle} />;
let headerText: ReactNode;
if (selectedContacts.length === 1) {