Skip to content

Commit 6fe403c

Browse files
committed
fix: wrong date
1 parent 9b85cdd commit 6fe403c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/stinger.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const specialDays: Day = {
1515
// show stinger
1616
export default function stinger(): void {
1717
const month = `${new Date().getMonth() + 1}`
18-
const day = `${new Date().getDay()}`
18+
const day = `${new Date().getDate()}`
1919
const date = month + day
2020
specialDays[date] && log.message(specialDays[date])
2121
}

0 commit comments

Comments
 (0)