Skip to content

Commit 27587f9

Browse files
committed
Remove explicit types for date variable
1 parent 774381f commit 27587f9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

next-seo.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
const today: Date = new Date();
2-
const currentMonth: number = today.getMonth();
3-
const currentYear: number = today.getFullYear();
1+
const today = new Date();
2+
const currentMonth = today.getMonth();
3+
const currentYear = today.getFullYear();
44

55
const config = {
66
title: 'Hacktoberfest Projects',

0 commit comments

Comments
 (0)