fix: increase max workspace url length from 24 to 64 characters (closes #379( (#398)

This commit is contained in:
Matt
2026-02-17 09:40:58 -04:00
committed by GitHub
parent 1696aab43b
commit b6b9423823
5 changed files with 8 additions and 8 deletions

View File

@@ -33,7 +33,7 @@ const schema = z.object({
.min(3, {
message: t`URL must be at least 3 characters long`,
})
.max(24, { message: t`URL cannot exceed 24 characters` })
.max(64, { message: t`URL cannot exceed 64 characters` })
.regex(/^(?![-]+$)[a-zA-Z0-9-]+$/, {
message: t`URL can only contain letters, numbers, and hyphens`,
})