mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-09-07 19:55:46 -05:00
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:
@@ -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",
|
||||
}),
|
||||
|
||||
Reference in New Issue
Block a user