fix: removed word logging on message component

This commit is contained in:
Lukian 2025-04-20 19:52:52 +02:00
parent 1ec185330d
commit fafbceb6a2

View file

@ -14,7 +14,6 @@ export default function MessageComponent({ message, user, channel, deleteMessage
const array = []
var string = ''
message.content.split(" ").forEach((word) => {
console.log(word)
if (word.startsWith("@")) {
const mention = message.mentions.find((mention) => `@${mention.username}` === word);
if (mention) {