Skip to content

Commit

Permalink
fix: Use correct month
Browse files Browse the repository at this point in the history
  • Loading branch information
d-beezee committed Apr 8, 2024
1 parent 782492b commit 8573e7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/BugForm/toIsoStringWithTimezone.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const toISOStringWithTimezone = (date: Date, time: Date) => {
return (
date.getFullYear() +
"-" +
pad(date.getMonth()) +
pad(date.getMonth() + 1) +
"-" +
pad(date.getDate()) +
"T" +
Expand Down

0 comments on commit 8573e7a

Please sign in to comment.