feat: get the emojis to work with additions, removals, and multiple people

This commit is contained in:
2025-10-19 15:22:34 -06:00
parent 9ac9f1d4a3
commit a4a9293bc2
9 changed files with 205 additions and 141 deletions

View File

@@ -80,8 +80,10 @@ export interface UserInfo {
}
export interface CreateAndSubmitClaimResult {
success: boolean | { embeddedRecordError?: string; claimId?: string };
success: boolean;
embeddedRecordError?: string;
error?: string;
claimId?: string;
handleId?: string;
}