fix: when organizer adds people, they automatically register them as well

This commit is contained in:
2025-11-03 20:21:34 -07:00
parent 73806e78bc
commit 7e861e2fca
8 changed files with 127 additions and 67 deletions

View File

@@ -70,15 +70,6 @@ export interface AxiosErrorResponse {
[key: string]: unknown;
}
export interface UserInfo {
did: string;
name: string;
publicEncKey: string;
registered: boolean;
profileImageUrl?: string;
nextPublicEncKeyHash?: string;
}
export interface CreateAndSubmitClaimResult {
success: boolean;
embeddedRecordError?: string;