Fix calendar.

pull/1765/head
Brian Cao 2023-01-20 12:33:21 -08:00
parent 5c683f9103
commit d9ba4097ee
1 changed files with 2 additions and 1 deletions

View File

@ -123,7 +123,8 @@ const DaySelector = ({ date, minDate, maxDate, locale, onSelect }) => {
}
const days = [];
for (let i = 0; i < 35; i++) {
const weekCount = addDays(startDay, 36).getMonth() === month ? 42 : 35;
for (let i = 0; i < weekCount; i++) {
days.push(addDays(startDay, i));
}