fix length

This commit is contained in:
Philipinho
2026-01-13 16:13:52 +00:00
parent e98fa7f69a
commit 61e252918e
@@ -12,7 +12,7 @@ const formSchema = z.object({
slug: z
.string()
.min(2)
.max(50)
.max(100)
.regex(
/^[a-zA-Z0-9]+$/,
"Space slug must be alphanumeric. No special characters",