Skip to content

Commit

Permalink
chore: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Pagebakers committed Sep 29, 2023
1 parent 60bc3a6 commit 6bc46f4
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,14 +169,14 @@ export default function CreateProject() {
{
name: 'project',
schema: zod.object({
name: yup.string(),
name: zod.string(),
description: yup.string().optional(),
}),
},
{
name: 'members',
schema: yup.object({
members: yup.string(),
schema: zod.object({
members: zod.string(),
}),
},
]
Expand Down

0 comments on commit 6bc46f4

Please sign in to comment.