karismatic-megafauna / school-working-days-calculator

Calculate the number of school working days from today
MIT License
5 stars 21 forks source link

Address Moment.js Errors #41

Open karismatic-megafauna opened 6 years ago

karismatic-megafauna commented 6 years ago

http://momentjs.com/guides/#/warnings/js-date/

This error is popping up wherever we use moment.

From what I understand, the solution is to describe the format of the date you expect:

// BAD
moment('December 2008');

// GOOD
moment('December 2008', 'MMMM YYYY');
jasil1414 commented 6 years ago

Hi @michaelghinrichs , Is this warning coming from react-datepicker package ? As the warning appears as soon as I click on the date picker

Although we need to specify the format here and here.