Match formatting

pull/113/head
Heath Daniel 2021-04-27 21:56:30 -04:00
parent 83822c777c
commit 36db7fb4f1
1 changed files with 6 additions and 6 deletions

View File

@ -70,11 +70,11 @@ export default function Type(props) {
// Create placeholder elements for empty days in first week
const weekdayOfFirst = dayjs().month(selectedMonth).date(1).day();
const emptyDays = Array(weekdayOfFirst).fill(null).map((day, i) => (
const emptyDays = Array(weekdayOfFirst).fill(null).map((day, i) =>
<div key={`e-${i}`} className={"text-center w-10 h-10 rounded-full mx-auto"}>
{null}
</div>
));
);
// Combine placeholder days with actual days
const calendar = [...emptyDays, ...days.map((day) =>