Greetings, i've added an actionrow with some buttons to a container and it renders ok, but when i try to get a button click it says the message has no button components:
var separator = new DiscordSeparatorComponent(true, DiscordSeparatorSpacing.Small);
var b1 = new DiscordButtonComponent(DiscordButtonStyle.Success, "button1", "One");
var b2 = new DiscordButtonComponent(DiscordButtonStyle.Danger, "button2", "Two");
var buttons = new DiscordActionRowComponent(new List<DiscordComponent> { b1, b2 });
var components = new List<DiscordComponent>();
components.Add(text);
components.Add(separator);
components.Add(buttons);
var container = new DiscordContainerComponent(components.AsReadOnly(), false, DiscordColor.White);
var builder = new DiscordMessageBuilder();
builder.EnableV2Components();
builder.AddContainerComponent(container);
await ctx.RespondAsync(builder);
var message = await ctx.GetResponseAsync();
var result = await message.WaitForButtonAsync(); //ERROR here