Problems with the "Field > Combobox" component when passing all the data, label and component properties to it, no problem, but when I add "textField" the combobox gives me a list of [object Object]. Maybe I'm passing the properties wrong, could you give me some clue?
I have the list of "moneda" that is passed in data through the API.
In the attached image you can see that it loads the list with the value of 'CLP' which is correct and you see the [Object object] list. Greetings
const [currency, setCurrency] = useState([]);
useEffect(() => {
(async() => {
const currency = await getDefiCurrencies();
setCurrency(currency);
})();
}, []);
---------------Edit Form --------------------------
<Field
id={'CodiMone'}
name={'CodiMone'}
label={'Currency'}
component={FormComboBox}
// textField={'CodiMone'}
data={currency}
/>