How to set interaction select complete
StringSelectMenu
8 Replies
- What's your exact discord.js
npm list discord.js
and node node -v
version?
- Not a discord.js issue? Check out #other-js-ts.
- Consider reading #how-to-get-help to improve your question!
- Explain what exactly your issue is.
- Post the full error stack trace, not just the top part!
- Show your code!
- Issue solved? Press the button!
- ✅
Marked as resolved by OPWhat do you mean by that?
After selecting the string, the client writes the error this interaction failed
That means you don't response to the interaction
Is it possible to make it complete without a response?
No, you should let Discord know that your process is success. At least by using
await interaction.deferUpdate()
if you don't want to send any message responseThanks, exactly what I meant