Clear form field error when re-registering the same field

This commit is contained in:
Andrew Kingston 2021-08-19 13:41:18 +01:00
parent 700e36854c
commit 4f114e42db
1 changed files with 6 additions and 1 deletions

View File

@ -73,9 +73,14 @@
return return
} }
// Skip if we've already registered this field // If we've already registered this field then wipe any errors and
// return the existing field
const existingField = getField(field) const existingField = getField(field)
if (existingField) { if (existingField) {
existingField.update(state => {
state.fieldState.error = null
return state
})
return existingField return existingField
} }