You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
The salesforce adaptor uses flatten from lodash. See L103 in execute() function , We should remove this since it's an old implementation or add our own implementation of flatten in util
Eg:
functionflatten(array){return[].concat(...array);// or using flat()// return array.flat(1);}
The text was updated successfully, but these errors were encountered:
Description
The salesforce adaptor uses
flatten
fromlodash
. See L103 inexecute() function
, We should remove this since it's an old implementation or add our own implementation offlatten
inutil
Eg:
The text was updated successfully, but these errors were encountered: