diff --git a/app/features/tournament-organization/tournament-organization-schemas.ts b/app/features/tournament-organization/tournament-organization-schemas.ts index f8f9de0c8..240931052 100644 --- a/app/features/tournament-organization/tournament-organization-schemas.ts +++ b/app/features/tournament-organization/tournament-organization-schemas.ts @@ -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", }),