From 36db7fb4f1bd114e6775a08aea401af895ae2aff Mon Sep 17 00:00:00 2001 From: Heath Daniel Date: Tue, 27 Apr 2021 21:56:30 -0400 Subject: [PATCH] Match formatting --- pages/[user]/[type].tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pages/[user]/[type].tsx b/pages/[user]/[type].tsx index f49ffd64ed..29a66fe62a 100644 --- a/pages/[user]/[type].tsx +++ b/pages/[user]/[type].tsx @@ -70,16 +70,16 @@ 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) => ( -
- {null} -
- )); + const emptyDays = Array(weekdayOfFirst).fill(null).map((day, i) => +
+ {null} +
+ ); // Combine placeholder days with actual days const calendar = [...emptyDays, ...days.map((day) => )];