I have tried everything to remove a set of yes/no buttons from a message after they are clicked. The closest I can get is by setting them to disabled but they still are there and grayed out. Setting components=None leaves the buttons there. I feel like this should be simple but it doesn't want to work.
This is what sends the buttons:
msg = await ctx.send(response, components=yesno_buttons)
This works to gray them out:
reg_response = "Testing"
yesno_buttons[0].disabled = True
yesno_buttons[1].disabled = True
await clicked_msg.ctx.edit_origin(content=reg_response, components=yesno_buttons)```