improvement: address feedback

This commit is contained in:
Scott Wilson
2025-05-08 20:22:42 -07:00
parent 45c08b3f09
commit 44c7be54cf

View File

@@ -18,7 +18,7 @@ type Props = {
const schema = z
.object({
name: z.string(),
name: z.string().min(1, "Name required"),
description: z.string(),
slug: slugSchema({ min: 1 })
})