🚨(lint) update file for prettier 3.0.0
Prettier 3.0.0 comes with new standards so we need to upgrade our files to comply with it.
This commit is contained in:
@@ -29,7 +29,7 @@ export const CalendarGrid = ({
|
||||
startDate: state.visibleRange.start,
|
||||
endDate: endOfMonth(state.visibleRange.start),
|
||||
},
|
||||
state
|
||||
state,
|
||||
);
|
||||
|
||||
const shortDayFormatter = useDateFormatter({
|
||||
@@ -61,7 +61,7 @@ export const CalendarGrid = ({
|
||||
.getDatesInWeek(weekIndex)
|
||||
.map(
|
||||
(date, i) =>
|
||||
date && <CalendarCell key={i} state={state} date={date} />
|
||||
date && <CalendarCell key={i} state={state} date={date} />,
|
||||
)}
|
||||
</tr>
|
||||
))}
|
||||
|
||||
Reference in New Issue
Block a user