Skip to content

Commit

Permalink
Merge pull request #10 from KevinDaGame/development
Browse files Browse the repository at this point in the history
hotfix
  • Loading branch information
KevinDaGame authored Feb 17, 2024
2 parents fbcca4c + 3182193 commit 40a050b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RemindoBot/Commands/UrbanDictionaryCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public async Task Handle(SocketSlashCommand command)
MessageComponent buttons = new ComponentBuilder()
.WithButton("View on Urban Dictionary", style: ButtonStyle.Link, url: definition.Permalink)
.WithButton("Next definition", customId: $"urban-{word}-1")
.WithButton("Actual definition", customId: $"actual-{word}-0")
.WithButton("Actual definition", style: ButtonStyle.Success, customId: $"actual-{word}-0")
.Build();

await command.RespondAsync(embed: embed.Build(), components: buttons);
Expand Down

0 comments on commit 40a050b

Please sign in to comment.