From 0270680847fc31a8142b7b75e296f5c62c0a8df3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Comerci?= <45410089+ncomerci@users.noreply.github.com> Date: Tue, 4 Jul 2023 16:32:58 -0300 Subject: [PATCH] fix: max length set to 200 char. (#1068) --- src/entities/Grant/types.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/entities/Grant/types.ts b/src/entities/Grant/types.ts index 5fef4e939..9847aa432 100644 --- a/src/entities/Grant/types.ts +++ b/src/entities/Grant/types.ts @@ -203,7 +203,7 @@ export const SocialMediaContentQuestionsSchema = { relevantLink: { type: 'string', minLength: 1, - maxLength: 750, + maxLength: 200, }, } @@ -287,7 +287,7 @@ export const BudgetBreakdownConceptSchema = { relevantLink: { type: 'string', minLength: 0, - maxLength: 80, + maxLength: 200, }, } @@ -310,7 +310,7 @@ export const TeamMemberItemSchema = { relevantLink: { type: 'string', minLength: 0, - maxLength: 80, + maxLength: 200, }, }