Skip to content

Commit

Permalink
Make member description mandatory
Browse files Browse the repository at this point in the history
  • Loading branch information
vladh committed Dec 9, 2024
1 parent df91fb8 commit 50a224b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/schemas/members.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const memberReportSchema = z.object({

export const memberSchema = z.object({
name: z.string(),
description: z.string().optional(),
description: z.string(),
shortDescription: z.string(),
url: z.string().url(),
joinDate: z.string().date(),
Expand Down

0 comments on commit 50a224b

Please sign in to comment.