diff --git a/src/components/formFields/select/single/index.tsx b/src/components/formFields/select/single/index.tsx index 3eada975ead174c36cb112c8b6774736d9504b0c..dfc0f2398e179b15264c8b388b6f8092570efbb8 100644 --- a/src/components/formFields/select/single/index.tsx +++ b/src/components/formFields/select/single/index.tsx @@ -144,11 +144,9 @@ export default class SelectSingleField extends SelectField { - const value = props.options[defaultSelect === true ? 0 : defaultSelect].value - props.value = value - this.props.onValueSet('', value, await this.validate(value)) - })() + const value = props.options[defaultSelect === true ? 0 : defaultSelect]?.value + props.value = value + this.props.onValueSet('', value, true) } }