#when i reacted to the msg it is not repling

1 messages · Page 1 of 1 (latest)

forest galleon

code:```js
if (message.content.includes("r_test")) {
message.react('👍').then(() => message.react('👎'));

const filter = (reaction, user) => {
    return ['👍', '👎'].includes(reaction.emoji.name) && user.id === interaction.user.id;
};

message.awaitReactions({ filter, max: 1, time: 0, errors: ['time'] })
  .then(collected => {
      const reaction = collected.first();
  
      if (reaction.emoji.name === '👍') {
          message.channel.send('You reacted with a tick_mark up.');
      } else {
          message.channel.s('You reacted with a thumbs down.');
      }
  })
  .catch(collected => {
      message.reply('You reacted with neither a tick up, nor a thumbs down.');
      });

}

when i react no reply?? why??![JS](https://cdn.discordapp.com/emojis/1081597929061630048.webp?size=128 "JS")