How to send a followUp after deferReply() and editReply()?

I have an interaction.deferReply() that is edited later with interaction.editReply().

I'd like to also send a followUp (second message) with some buttons after editing the first message. Is there a way to do that?

My code looks like this right now:
interaction.editReply({ embeds: [threadsEmbed] }).then(
                        interaction.followUp({ embeds: [actionsEmbed], components: [row] }));
Was this page helpful?