Skip to content

Commit

Permalink
fix(plugins/dates): remove .end() call`
Browse files Browse the repository at this point in the history
Duration ranges less than a day were wrong
  • Loading branch information
Fdawgs committed Aug 7, 2024
1 parent 651b154 commit 1dfce21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/dates/src/api/parse/range/02-date-range.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export default [

return {
start: start,
end: end.end(),
end: end,
}
},
},
Expand Down

0 comments on commit 1dfce21

Please sign in to comment.