Skip to content

Commit eebfd8d

Browse files
committed
fix month
1 parent e08429a commit eebfd8d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/components/Ticket.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ const Ticket = ({ offset = 8 }) => {
5858

5959
let [ da, mo, y ] = [
6060
d.getDate(),
61-
d.getMonth(),
61+
d.getMonth() + 1,
6262
d.getFullYear()
6363
].map(el => String(el).padStart(2, '0'))
6464

0 commit comments

Comments
 (0)