Why is the date in datepicker angular showing the last day?
I solve this problem by converting datepicker date value to UTC. Here is example:
const d = new Date(<DATE FROM FORM FIELD>);
const date = Date.UTC(d.getFullYear(), d.getMonth(), d.getDate());
Maybe it's not elegant way to fix it but help me