fix(test): MessageActionRow to ActionRow (#7523)

This commit is contained in:
Parbez
2022-02-23 13:09:24 +05:30
committed by GitHub
parent 00728f72b3
commit d1d1b076be

View File

@@ -733,7 +733,7 @@ client.on('interactionCreate', async interaction => {
interaction.reply({ content: 'Hi!', components: [[button]] });
// @ts-expect-error
void new MessageActionRow({});
void new ActionRow({});
// @ts-expect-error
await interaction.reply({ content: 'Hi!', components: [button] });