refactor: make the meeting member "set visibility" screen much like the organizer's "admit" screen

This commit is contained in:
2025-10-26 14:08:30 -06:00
parent 723a0095a0
commit 9e1c267bc0
7 changed files with 196 additions and 193 deletions

View File

@@ -6,3 +6,12 @@ export interface UserInfo {
profileImageUrl?: string;
nextPublicEncKeyHash?: string;
}
export interface MemberData {
did: string;
name: string;
isContact: boolean;
member: {
memberId: string;
};
}