уже на протяжении нескольких месяцев сталкиваюсь с одной проблемой в discord.py и discord_components, проблема в том, что когда я создаю кнопку, отправляю её и жду нажатия, после этого Interaction может как прийти, так и не прийти, после чего следует ошибка Interaction is unknown, чаще всего это происходит, если нажать на кнопку с телефона. Вот код:
from discord_components import Button, ButtonStyle
from discord.ext import commands
import discord
client = commands.Bot(command_prefix=p, intents=discord.Intents.all())
last = await channel.send(embed=discord.Embed(description=f"Всё верно?"), components = [[Button(style=ButtonStyle.blue, label='Подтвердить', custom_id="yes"), Button(style=ButtonStyle.gray, label = "Отменить", custom_id = "cancel")]])
interaction = await client.wait_for("button_click", check = lambda message: message.author == intt.author)