This has never happened to me, but this view is timing out even when I respond to it by editing the message.
view class:
class SongSelectView(discord.ui.View):
def __init__(self):
super().__init__(timeout=60)
async def on_timeout(self):
await self.message.edit(content=f"{emotes.error} You took too long to select a song!", view=None, delete_after=20)```
didnt work