Allow adding to a group by phone number

This commit is contained in:
Fedor Indutny
2022-04-04 17:38:22 -07:00
committed by GitHub
parent 76a1a805ef
commit 9568d5792e
49 changed files with 1842 additions and 693 deletions

View File

@@ -15,7 +15,7 @@ import { Intl } from '../../../Intl';
import { Emojify } from '../../Emojify';
import { ContactName } from '../../ContactName';
type PropsType = {
export type StatePropsType = {
groupTitle: string;
i18n: LocalizerType;
makeRequest: () => void;
@@ -24,6 +24,8 @@ type PropsType = {
selectedContacts: ReadonlyArray<ConversationType>;
};
type PropsType = StatePropsType;
export const ConfirmAdditionsModal: FunctionComponent<PropsType> = ({
groupTitle,
i18n,