File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -458,7 +458,7 @@ const CalendarsScreen = () => {
458458 return (
459459 < Fragment >
460460 { renderCalendarWithSelectableDate ( ) }
461- { /* { renderCalendarWithWeekNumbers()}
461+ { renderCalendarWithWeekNumbers ( ) }
462462 { renderCalendarWithMinAndMaxDates ( ) }
463463 { renderCalendarWithCustomDay ( ) }
464464 { renderCalendarWithInactiveDays ( ) }
@@ -469,7 +469,7 @@ const CalendarsScreen = () => {
469469 { renderCalendarWithPeriodMarkingAndSpinner ( ) }
470470 { renderCalendarWithPeriodMarkingAndDotMarking ( ) }
471471 { renderCalendarWithMultiPeriodMarking ( ) }
472- {renderCalendarWithCustomMarkingType()} */ }
472+ { renderCalendarWithCustomMarkingType ( ) }
473473 </ Fragment >
474474 ) ;
475475 } ;
Original file line number Diff line number Diff line change @@ -59,7 +59,6 @@ const Day = React.memo((props: DayProps) => {
5959
6060 const Component = dayComponent || markingType === 'period' ? PeriodDay : BasicDay ;
6161
62- console . warn ( date ) ;
6362 return (
6463 < Component
6564 { ...props }
You can’t perform that action at this time.
0 commit comments