Skip to content

Commit

Permalink
removed min character limit on AST Notes
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjaytkbabu committed Apr 23, 2024
1 parent 746da35 commit ec49a44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/validators/submission.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const schema = {
longitude: Joi.number().max(255).allow(null),
queuePriority: Joi.number().max(255).allow(null),
relatedPermits: Joi.string().max(255).allow(null),
astNotes: Joi.string().min(0).max(255).allow(null),
astNotes: Joi.string().min(0).allow(null),
astUpdated: Joi.boolean().required(),
addedToATS: Joi.boolean().required(),
atsClientNumber: Joi.string().min(0).max(255).allow(null),
Expand Down

0 comments on commit ec49a44

Please sign in to comment.