i am using version 14
i have a state in react
const [cellMeta, setCellMeta] = useState([]);
on afterSetCellMeta i call a function to insert the meta for the cells and i pass the state to handsontable cell
cell={
rows.length && columns.length
? cellMeta
: undefined
}
on doing so an infinte loop starts and i am not able to get the reason why,