From 3adb0157262f30c30f5f540d3568c50d95707729 Mon Sep 17 00:00:00 2001 From: Sergey Krashevich Date: Thu, 3 Aug 2023 16:21:50 +0300 Subject: [PATCH] Update web/src/components/Calendar.jsx Co-authored-by: Nicolas Mowen --- web/src/components/Calendar.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/Calendar.jsx b/web/src/components/Calendar.jsx index 789237d76..bfab5d785 100644 --- a/web/src/components/Calendar.jsx +++ b/web/src/components/Calendar.jsx @@ -101,7 +101,7 @@ const Calendar = ({ onChange, calendarRef, close, dateRange, children }) => { setState((prev) => ({ ...prev, selectedDay: todayTimestamp, - monthDetails: getMonthDetails(year, month) + monthDetails: getMonthDetails(year, month), })); }, [year, month, getMonthDetails]);