Client - improve calendar display on mobile + fix

This commit is contained in:
Sam
2021-10-01 17:40:58 +02:00
parent 5856599377
commit 7157f53298
15 changed files with 59 additions and 10 deletions

View File

@ -58,7 +58,7 @@ export const getCalendarStartAndEnd = (
const weekStartsOn = weekStartingMonday ? 1 : 0
return {
start: startOfWeek(monthStart, { weekStartsOn }),
end: endOfWeek(monthEnd),
end: endOfWeek(monthEnd, { weekStartsOn }),
}
}