Skip to content

Commit

Permalink
fix: max length set to 200 char. (#1068)
Browse files Browse the repository at this point in the history
  • Loading branch information
ncomerci committed Jul 4, 2023
1 parent e32503c commit 0270680
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/entities/Grant/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ export const SocialMediaContentQuestionsSchema = {
relevantLink: {
type: 'string',
minLength: 1,
maxLength: 750,
maxLength: 200,
},
}

Expand Down Expand Up @@ -287,7 +287,7 @@ export const BudgetBreakdownConceptSchema = {
relevantLink: {
type: 'string',
minLength: 0,
maxLength: 80,
maxLength: 200,
},
}

Expand All @@ -310,7 +310,7 @@ export const TeamMemberItemSchema = {
relevantLink: {
type: 'string',
minLength: 0,
maxLength: 80,
maxLength: 200,
},
}

Expand Down

0 comments on commit 0270680

Please sign in to comment.