RangeError [EMBED_FIELD_VALUE] MessageEmbed field values must be non-empty strings.

When i try to add more fields I get this error RangeError [EMBED_FIELD_VALUE]: MessageEmbed field values must be non-empty strings.

//Original Embed    
const EmCarInfo = new MessageEmbed()
  .setTitle('title')
  .setDescription('Test Test 123')
  .addFields(
    { name: 'Field Value', value: `Some values ${test123}` },
  )

when I try to add more fields based on some condition:
if (handling != undefined) {
  EmCarInfo.addFields(
    { name: 'test237', value: `Test 123 ${someOtherValue}` }
  )
}

I get an error,
not sure why is this happening
Was this page helpful?