While looking over the code I noticed that with the job post form there is a minLength of 10 for the job title.
Problem
Have not considered jobs like Tech Lead, that have less than 10 characters
Proposal
Shorten required character count to 7 to account for shorter job titles: minLength={7}<Text fontSize="xs">At least 7 characters</Text>Make sure title is at least 7 characters long
Overview
While looking over the code I noticed that with the job post form there is a
minLength
of 10 for the job title.Problem
Have not considered jobs like Tech Lead, that have less than 10 characters
Proposal
Shorten required character count to 7 to account for shorter job titles:
minLength={7}
<Text fontSize="xs">At least 7 characters</Text>
Make sure title is at least 7 characters long