From 8493b482c492344702f6b4e794cc02c35e5b19ab Mon Sep 17 00:00:00 2001 From: Derek Chen Date: Fri, 9 Feb 2024 17:47:12 -0600 Subject: [PATCH] chore: refactor --- src/views/components/common/CalendarGrid/CalendarGrid.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/views/components/common/CalendarGrid/CalendarGrid.tsx b/src/views/components/common/CalendarGrid/CalendarGrid.tsx index beafdf3e..b7e06391 100644 --- a/src/views/components/common/CalendarGrid/CalendarGrid.tsx +++ b/src/views/components/common/CalendarGrid/CalendarGrid.tsx @@ -48,9 +48,7 @@ const Calendar: React.FC = (props) => { {day} ))} - {grid.map((row, rowIndex) => ( - row - ))} + {grid.map((row, rowIndex) => (row))}