Increase tournament organization max name length (#2403)

Increases the character limit on an organization's name from 32 -> 64 characters. 64 is chosen to follow the 2^n pattern from 32
This commit is contained in:
Astrid
2025-06-18 10:33:23 -04:00
committed by GitHub
parent 4490106ccd
commit 3bca1849cc

View File

@@ -14,7 +14,7 @@ export const organizationEditSchema = z.object({
.string()
.trim()
.min(2)
.max(32)
.max(64)
.refine((val) => mySlugify(val).length >= 2, {
message: "Not enough non-special characters",
}),