Fix broken Pending Invites screen

This commit is contained in:
Scott Nonnenberg
2021-11-10 15:01:06 -08:00
committed by GitHub
parent d2592de366
commit 6445a01f2a
3 changed files with 4 additions and 3 deletions

View File

@@ -14,10 +14,11 @@ import {
} from '../selectors/conversations';
import { getGroupMemberships } from '../../util/getGroupMemberships';
import { assert } from '../../util/assert';
import type { UUIDStringType } from '../../types/UUID';
export type SmartPendingInvitesProps = {
conversationId: string;
ourConversationId?: string;
ourUuid: UUIDStringType;
readonly approvePendingMembership: (conversationid: string) => void;
readonly revokePendingMemberships: (membershipIds: Array<string>) => void;
};