I have a weird issue. For some reasons embed doesn't show up anymore, however it worked yesterday and I'm not entirely sure if i did something wrong or what.
Example code for interaction reply:
const testEmbed = new MessageEmbed()
.setAuthor('Example')
.setDescription('Some description for this embed')
.setColor('YELLOW')
.setTitle('Embed title');
console.log(testEmbed);
interaction.reply({
content: 'Response with content!',
embeds: [testEmbed],
ephemeral: false
}).catch(console.error);
The funniest thing is that if I comment out the content of the response, the interaction reply is completely blank.