Role Select Menu not clearing/refreshing?

I swear it was working before. The input will not clear.

Once the "next-button" is clicked, the message should update and the select menu should not display the previous inputs. The page number is correct and the data to set/display for the role select menu is correct as well.

 case "next-button": {
                        if (currentConfig.index < info.pages.length-1) {
                            currentConfig.index += 1
                            currentConfig.page = info.pages[currentConfig.index]

                            await component.update({
                                embeds: [embeds.embed({
                                    title: currentConfig.page.embed.title,
                                    color: currentConfig.page.embed.color,
                                    fields: currentConfig.page.embed.fields
                                })],
                                components: await setComponents(currentConfig)
                            });
                        }
                        break;
                    }
Was this page helpful?