Skip to content

Commit 154dd11

Browse files
committed
removing test aids
1 parent 8cde6e2 commit 154dd11

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

example/src/screens/calendars.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
};

src/calendar/day/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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}

0 commit comments

Comments
 (0)