#.
1 messages · Page 1 of 1 (latest)
you have to defer the response at the top of the callback/command, not at the end.
await interaction.response.defer()
channel = await interaction.guild.fetch_channel(my_id)
embed = discord.Embed(description="Test")
await channel.send(embed=embed)``` so this
He sends the message in the channel but he still sends the message bot is thinking
You need to respond to the interaction with ctx.respond()
?