While fetching profile data for a user which does not exist, we used interaction.reply which caused the error because we already used interaction.deferReply to defer the reply.
So I converted those sections using .reply to .editReply to fix the error
While fetching profile data for a user which does not exist, we used
interaction.reply
which caused the error because we already usedinteraction.deferReply
to defer the reply.So I converted those sections using
.reply
to.editReply
to fix the error