We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b85cdd commit 6fe403cCopy full SHA for 6fe403c
utils/stinger.ts
@@ -15,7 +15,7 @@ export const specialDays: Day = {
15
// show stinger
16
export default function stinger(): void {
17
const month = `${new Date().getMonth() + 1}`
18
- const day = `${new Date().getDay()}`
+ const day = `${new Date().getDate()}`
19
const date = month + day
20
specialDays[date] && log.message(specialDays[date])
21
}
0 commit comments