Worklog for task "Make only Name and Phone mandatory in the checkout form"
15 июн. 2026 г., 02:21:44
useEffect(() => {
const errorName = Object.entries(errors).at(0)?.[0]
if (errorName) {
const field = document.querySelector(`[name="${errorName}"]`)
if (field) {
field.scrollIntoView({ behavior: 'smooth', block: 'center' })
}
}
}, [errors])