Not sure if this is actually a discord issue, but I can't seem to get components to show up when using SocketInteraction::FollowupWithFIle.
This doesn't work:
await Interaction.FollowupWithFileAsync(s, "gac_map.png", text: "123", component: componentBuilder.Build());
And this works fine:
await Interaction.FollowupWithFileAsync(s, "gac_map.png");
await Interaction.FollowupAsync("123", component: componentBuilder.Build());
Not sure if this is actually a discord issue, but I can't seem to get components to show up when using SocketInteraction::FollowupWithFIle.
This doesn't work: await Interaction.FollowupWithFileAsync(s, "gac_map.png", text: "123", component: componentBuilder.Build());
And this works fine: await Interaction.FollowupWithFileAsync(s, "gac_map.png"); await Interaction.FollowupAsync("123", component: componentBuilder.Build());