Is there a way to silence mentions inside of containers using Components V2?
I am writing a moderation bot using Components V2. The code in the screenshot I attached works pretty good however, it pings anyone mentioned in the container. I was wondering if there is a way to silence the pings while still mentioning the user.

3 Replies
I just updated discord.js to 14.22.1.
You can control which entities receive notifications via the
allowedMentions
option. You can:
- Set a default on the client
- Set for a specific message
- Use the repliedUser
key to disable in-line reply mentions
Thanks. That worked perfectly.