Имея такой код
const change = (e) => {
console.log("e = ", e);
console.log("formatBirthday(e) = ", formatBirthday(e));
console.log("new Date(formatBirthday(e)) = ", new Date(formatBirthday(e)));
console.log("new Date(e) = ", new Date(e));
onChange(new Date(formatBirthday(e)));
};
Выбираем дату, где день больше 12 и получаем Error на странице, а в консоли:
e = Tue Aug 30 2022 00:00:00 GMT+0700 (GMT+07:00)
formatBirthday(e) = 30.08.2022
new Date(formatBirthday(e)) = Invalid Date
new Date(e) = Tue Aug 30 2022 00:00:00 GMT+0700 (GMT+07:00)
The above error occurred in the component:
Could not consume error:
Error: Something is *really* wrong.