Fix linting issues
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful

This commit is contained in:
Ethan Lane 2024-02-22 18:40:21 +00:00
parent 64d9c8e737
commit ef795efd28

View file

@ -9,12 +9,12 @@ export default class Trade extends ButtonEvent {
const action = interaction.customId.split(" ")[1];
switch (action) {
case "accept":
await this.AcceptTrade(interaction);
break;
case "decline":
await this.DeclineTrade(interaction);
break;
case "accept":
await this.AcceptTrade(interaction);
break;
case "decline":
await this.DeclineTrade(interaction);
break;
}
}