Clan colors
This commit is contained in:
parent
2ebc3d8c27
commit
c9da06445d
1 changed files with 3 additions and 3 deletions
|
@ -53,9 +53,9 @@ export const SubmitClanSchema = yup
|
||||||
url: yup.string().notRequired().url(),
|
url: yup.string().notRequired().url(),
|
||||||
color: yup
|
color: yup
|
||||||
.tuple([
|
.tuple([
|
||||||
yup.number().min(0).max(255),
|
yup.number().min(0).max(255).required(),
|
||||||
yup.number().min(0).max(255),
|
yup.number().min(0).max(255).required(),
|
||||||
yup.number().min(0).max(255)
|
yup.number().min(0).max(255).required()
|
||||||
])
|
])
|
||||||
.notRequired(),
|
.notRequired(),
|
||||||
policies: yup
|
policies: yup
|
||||||
|
|
Loading…
Reference in a new issue