mirror of
https://github.com/kremalicious/umami.git
synced 2024-12-18 15:23:38 +01:00
Fix calendar starting day.
This commit is contained in:
parent
5b4a012f0b
commit
e35821a0c3
@ -105,7 +105,7 @@ export default function Calendar({ date, minDate, maxDate, onChange }) {
|
||||
const DaySelector = ({ date, minDate, maxDate, locale, onSelect }) => {
|
||||
const startWeek = startOfWeek(date);
|
||||
const startMonth = startOfMonth(date);
|
||||
const startDay = subDays(startMonth, startMonth.getDay() + 1);
|
||||
const startDay = subDays(startMonth, startMonth.getDay());
|
||||
const month = date.getMonth();
|
||||
const year = date.getFullYear();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user