henrylin03 / cv-generator

Curriculum vitae (CV) / job resume generator, written in ReactJS
https://generate-your-cv.netlify.app/
MIT License
0 stars 0 forks source link

feat: start date and end dates are mandatory fields #43

Open henrylin03 opened 1 month ago

henrylin03 commented 1 month ago

this makes #14 easier

henrylin03 commented 1 month ago

because we are using a Mantine UI library component (MonthPicker), checking if it has been filled out is proving difficult. Instead of the event.currentTarget or event.Target of the component being the value that has been picked, it is the event (null if blank) OR the text that is on the button component (which wouldn't be null but our placeholder text).

a potential workaround might be to switch every field as Mantine fields, and use Mantine's own useForm hooks, but I feel this is cheating by using a library...