MM-52793 : Search calendar selects the day before when selected for a date (#23618)

This commit is contained in:
Hamza 2023-07-19 07:26:19 -04:00 committed by GitHub
parent 628273d98d
commit 9322f71f94
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,7 +30,7 @@ export default class SearchDateSuggestion extends React.PureComponent<Props> {
};
handleDayClick = (day: Date) => {
const dayString = day.toISOString().split('T')[0];
const dayString = new Date(Date.UTC(day.getFullYear(), day.getMonth(), day.getDate())).toISOString().split('T')[0];
this.props.onClick(dayString, this.props.matchedPretext);
};