Skip to content

Commit

Permalink
fix: schema
Browse files Browse the repository at this point in the history
  • Loading branch information
LemonardoD committed Jan 23, 2025
1 parent 924e1d8 commit 846c3dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/modules/organizations/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const invitesInfoSchema = z.array(
id: z.string(),
email: z.string(),
name: z.string().nullable(),
role: z.string().nullable(),
role: z.enum(config.rolesByType.entityRoles).nullable(),
expiresAt: z.string(),
createdAt: z.string(),
createdBy: z.string().nullable(),
Expand Down

0 comments on commit 846c3dc

Please sign in to comment.