Can someone explain why the numeric values show as an empty string within my formGroup,
private formatFormValues(depositDates) {
return depositDates.map((depositDate) => {
console.log('deposit dates', depositDates);
console.log('deposit dates - amount', depositDate.controls.effectiveDates.value);
return {
effectiveDates: depositDate.controls.effectiveDates.value,
depositDate: depositDate.controls.depositDate.value,
};
});
}
I have this depositDates formGroup instance which Im logging and looks like this:

I then try to access the values within this instance, and for some reason the amount always shows as an empty string despite it being shown as an active and set numeric value?
Am I in some what missing something / accessing something incorrectly for this to happen?
