Fix LeftPaneComposeHelper type

This commit is contained in:
Evan Hahn 2021-10-22 13:12:10 -05:00 committed by GitHub
parent 099bafe917
commit 54373810ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,7 +19,7 @@ import { missingCaseError } from '../../util/missingCaseError';
export type LeftPaneComposePropsType = { export type LeftPaneComposePropsType = {
composeContacts: ReadonlyArray<ContactListItemPropsType>; composeContacts: ReadonlyArray<ContactListItemPropsType>;
composeGroups: ReadonlyArray<ContactListItemPropsType>; composeGroups: ReadonlyArray<ConversationListItemPropsType>;
regionCode: string; regionCode: string;
searchTerm: string; searchTerm: string;
}; };