FYI, you can chain builder functions. For example, you can turn:
const textInput = new TextInputBuilder()textInput.setCustomId('inputOne')textInput.setLabel('What is your question?')textInput.setStyle(TextInputStyle.Paragraph)
const textInput = new TextInputBuilder()textInput.setCustomId('inputOne')textInput.setLabel('What is your question?')textInput.setStyle(TextInputStyle.Paragraph)
into
const textInput = new TextInputBuilder() .setCustomId('inputOne') .setLabel('What is your question?') .setStyle(TextInputStyle.Paragraph)
const textInput = new TextInputBuilder() .setCustomId('inputOne') .setLabel('What is your question?') .setStyle(TextInputStyle.Paragraph)