fix mapper error

This commit is contained in:
Peter Maquiran
2024-06-18 14:13:24 +01:00
parent 413858d070
commit e0a85ef2ea
5 changed files with 20 additions and 8 deletions
@@ -74,6 +74,6 @@ export const EventOutputDTOSchema = z.object({
organizer: OrganizerSchema,
status: z.nativeEnum(EEventStatus), // ['Pending', 'Revision', 'Approved', 'Declined', 'Communicated', 'ToCommunicate'] = [1, 2, 3, 4, 5, 6]
}),
}).nullable();
})
export type EventOutputDTO = z.infer<typeof EventOutputDTOSchema>