Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
carkom committed Apr 5, 2024
1 parent c96c957 commit ec4bdc3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export function validateEnd(
let dateEnd;
switch (interval) {
case 'Monthly':
dateEnd = end + '-31';
dateEnd = monthUtils.getMonthEnd(end + '-01');
subDays = 180;
break;
case 'Yearly':
Expand Down

0 comments on commit ec4bdc3

Please sign in to comment.