Hey @Anish_Srinivasan! Thanks for reaching out - and welcome to Retool.
I'm digging into this now and am unable to immediately replicate your issue, albeit it with a much simpler use case. This might just be a syntax issue - should _.map(waystar_payer_list, e => [{ ... }]
be _.map(waystar_payer_list, e => ({ ... })
instead? The former is returning an array of arrays with a single element, whereas the latter returns an array of objects and seems like the more logical option.