i have following
const imageField = ["logoUrl", "fullLogoUrl"]
const onCreate = async (submitData: any) => {
  const uploadImageField = await imageField.reduce(
    async function (acc: any, cur: string) {
      await acc;
      const url = await uploadImage(submitData.general[cur][0]);
      acc[cur] = url;
      return acc;
    },
  {}
);
console.log(uploadImageField);
}
this is my console.log
{
  logoUrl: "https://........"
}
only logoUrl field is show, fullLogoUrl is missing
 
    