From c9da06445d7c6e6208d5b9a537dc17afef884b67 Mon Sep 17 00:00:00 2001 From: MeowcaTheoRange Date: Thu, 24 Aug 2023 15:24:20 -0500 Subject: [PATCH] Clan colors --- src/types/client/clan.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/types/client/clan.ts b/src/types/client/clan.ts index cd858ae..1911f77 100644 --- a/src/types/client/clan.ts +++ b/src/types/client/clan.ts @@ -53,9 +53,9 @@ export const SubmitClanSchema = yup url: yup.string().notRequired().url(), color: yup .tuple([ - yup.number().min(0).max(255), - yup.number().min(0).max(255), - yup.number().min(0).max(255) + yup.number().min(0).max(255).required(), + yup.number().min(0).max(255).required(), + yup.number().min(0).max(255).required() ]) .notRequired(), policies: yup