Fix refresh button issue, closes #840

This commit is contained in:
Mike Cao 2021-12-19 22:49:08 -08:00
parent 7b7557ec90
commit 504b5f10d9
3 changed files with 6 additions and 7 deletions

View file

@ -117,8 +117,6 @@ const DaySelector = ({ date, minDate, maxDate, locale, onSelect }) => {
const month = date.getMonth();
const year = date.getFullYear();
console.log({ dateLocale, startDay, startWeek, startMonth, month, year });
const daysOfWeek = [];
for (let i = 0; i < 7; i++) {
daysOfWeek.push(addDays(startWeek, i));