Frequent questions
Before asking a question, look at these :)
Select is not visible.
How to make buttons inline?
await <discord.abc.Messageable>.send(
...,
components = [
Button(...),
Button(...),
Button(...)
]
)await <discord.abc.Messageable>.send(
...,
components = [
[
Button(...),
Button(...),
Button(...)
]
]
)How do I remove components?
How do I ignore the interaction?
Handle all interactions
Using with cogs.
TypeError: send() got an unexpected keyword argument 'components'
Handle multiple clicks
Disabling the components for specific users
Last updated