Skip to content

Commit

Permalink
fix: fap reviews comment character limit (#856)
Browse files Browse the repository at this point in the history
  • Loading branch information
TCMeldrum authored Nov 19, 2024
2 parents e6f30a6 + 7b426dd commit ad8fdc4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { QuestionaryComponentDefinition } from 'components/questionary/Questiona

export const createFapReviewBasisValidationSchema: QuestionaryComponentDefinition['createYupValidationSchema'] =
() => {
const FAP_REVIEW_COMMENT_CHAR_LIMIT = 100;
const FAP_REVIEW_COMMENT_CHAR_LIMIT = 6000;

let commentSchema = Yup.string().transform(function (value: string) {
return sanitizeHtmlAndCleanText(value);
Expand Down

0 comments on commit ad8fdc4

Please sign in to comment.