const configurationModal = new ModalBuilder()
.setCustomId(`errorConfigurationModal`)
.setTitle('⚙️ Bot Configuration')
//.setDescription('**Warning** This is not the server configuration! This is the entire bot domain!!!')
new ActionRowBuilder().addComponents(
new TextInputBuilder()
.setCustomId('errorLog_channel')
.setTitle('Error Channel ID')
.setDescription('The channel all errors are directed into. To disable, set to 0.')
.setDefaultValue(errorChannel_ID)
.setStyle('Short')
.setRequired(true)
)
const configurationModal = new ModalBuilder()
.setCustomId(`errorConfigurationModal`)
.setTitle('⚙️ Bot Configuration')
//.setDescription('**Warning** This is not the server configuration! This is the entire bot domain!!!')
new ActionRowBuilder().addComponents(
new TextInputBuilder()
.setCustomId('errorLog_channel')
.setTitle('Error Channel ID')
.setDescription('The channel all errors are directed into. To disable, set to 0.')
.setDefaultValue(errorChannel_ID)
.setStyle('Short')
.setRequired(true)
)