We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 583a0bb commit 0f990beCopy full SHA for 0f990be
1 file changed
scripts/benchmark-svg.ts
@@ -23,10 +23,7 @@ const calendar = {
23
weeks: Array.from({ length: 14 }, (_, weekIndex) => ({
24
contributionDays: Array.from({ length: 7 }, (_, dayIndex) => ({
25
contributionCount: Math.floor(Math.random() * 20),
26
- date: new Date(
27
- startDate.getTime() +
28
- (weekIndex * 7 + dayIndex) * 24 * 60 * 60 * 1000
29
- )
+ date: new Date(startDate.getTime() + (weekIndex * 7 + dayIndex) * 24 * 60 * 60 * 1000)
30
.toISOString()
31
.split('T')[0],
32
})),
0 commit comments