diff --git a/RemindoBot/Commands/UrbanDictionaryCommand.cs b/RemindoBot/Commands/UrbanDictionaryCommand.cs index c34c9e1..4eea1cc 100644 --- a/RemindoBot/Commands/UrbanDictionaryCommand.cs +++ b/RemindoBot/Commands/UrbanDictionaryCommand.cs @@ -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);