We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bd15c4 commit e94d511Copy full SHA for e94d511
example/src/mocks/agendaItems.ts
@@ -2,9 +2,9 @@ import isEmpty from 'lodash/isEmpty';
2
import {MarkedDates} from '../../../src/types';
3
4
const today = new Date().toISOString().split('T')[0];
5
-const fastDate = getPastDate(3);
+const pastDate = getPastDate(3);
6
const futureDates = getFutureDates(12);
7
-const dates = [fastDate, today].concat(futureDates);
+const dates = [pastDate, today].concat(futureDates);
8
9
function getFutureDates(numberOfDays: number) {
10
const array: string[] = [];
0 commit comments