We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8966ed5 commit 56be57dCopy full SHA for 56be57d
src/pages/teams/create-edit/create-edit-teams.validator.ts
@@ -50,7 +50,7 @@ export const createTeamApiResponseSchema = yup.object({
50
name: yup
51
.string()
52
.required('Team name is required')
53
- .max(10, 'Team name must be at most 10 characters')
+ .max(9, 'Team name must not exceed 9 characters')
54
.matches(/^[^A-Z_]*$/, 'Team name cannot contain capital letters or underscores'),
55
oidc: yup
56
.object({
0 commit comments