DiscordAPIError[50035]: Invalid Form Body components[0][UNION_TYPE_CHOICES]: Value of field "type" must be one of (1,). components[1][UNION_TYPE_CHOICES]: Value of field "type" must be one of (1,). ```js const embed = new D.EmbedBuilder() .setTitle(`Note from: ${CTX.author.username}`) .setDescription(CTX.content) .setTimestamp() .setColor(D.Colors.DarkGold) const ThumbsUp = new D.ButtonBuilder() .setLabel("1") .setStyle(D.ButtonStyle.Success) .setCustomId(`test123`) .setEmoji("👍") const ThumbsDown = new D.ButtonBuilder() .setLabel("1") .setCustomId(`test1231`) .setStyle(D.ButtonStyle.Danger) .setEmoji("👎") await CTX.channel.send({ephemeral: true, embeds: [embed], components: [ThumbsUp, ThumbsDown]}) ```