From 08799aac18940a8d3665c9dd2527a205b92bbae6 Mon Sep 17 00:00:00 2001 From: Larvey <39219859+LarveyOfficial@users.noreply.github.com> Date: Sat, 11 Jun 2022 19:16:03 -0400 Subject: [PATCH] Fix build issue from pull request #193 --- src/components/modules/calendar/CalendarModule.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/modules/calendar/CalendarModule.tsx b/src/components/modules/calendar/CalendarModule.tsx index edde221ea..0455d1f5e 100644 --- a/src/components/modules/calendar/CalendarModule.tsx +++ b/src/components/modules/calendar/CalendarModule.tsx @@ -100,7 +100,7 @@ export default function CalendarComponent(props: any) { dayStyle={(date) => date.getDay() === today.getDay() && date.getDate() === today.getDate() ? { backgroundColor: '#2C2E33' } - : null + : {} } dayClassName={(date, modifiers) => cx({ [classes.weekend]: modifiers.weekend })