Open
Description
i have a form like this:
type Condition =
| {
type: 'composite'
operator: 'and' | 'or'
conditions: Condition[]
}
| OtherCondition
type Form = {
condition: Condition
}
seems a bit like nested & array field approach. could have dynamic field path like:
<Field name={`condition.conditions.${index}.type`} />
but i got this error when i trying to create the form: