Skip to content

Commit 0f990be

Browse files
style: apply prettier formatting
1 parent 583a0bb commit 0f990be

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

scripts/benchmark-svg.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,7 @@ const calendar = {
2323
weeks: Array.from({ length: 14 }, (_, weekIndex) => ({
2424
contributionDays: Array.from({ length: 7 }, (_, dayIndex) => ({
2525
contributionCount: Math.floor(Math.random() * 20),
26-
date: new Date(
27-
startDate.getTime() +
28-
(weekIndex * 7 + dayIndex) * 24 * 60 * 60 * 1000
29-
)
26+
date: new Date(startDate.getTime() + (weekIndex * 7 + dayIndex) * 24 * 60 * 60 * 1000)
3027
.toISOString()
3128
.split('T')[0],
3229
})),

0 commit comments

Comments
 (0)