bug solve

This commit is contained in:
Eudes Inácio
2024-06-04 10:21:40 +01:00
13 changed files with 100 additions and 33 deletions
@@ -18,7 +18,7 @@ const CommentSchema = z.object({
const AttendeeSchema = z.object({
id: z.string(),
name: z.string(),
attendeeType: EAttendeeTypeDTO,
attendeeType: z.enum(["Required", "Acknowledgment", "Optional"]),
emailAddress: z.string(),
wxUserId: z.number(),
});