From 825fc45d964d16a6c8784261e4e7f5be2b7eb2cc Mon Sep 17 00:00:00 2001 From: Tarrgon <61888458+Tarrgon@users.noreply.github.com> Date: Wed, 20 May 2026 15:06:23 -0400 Subject: [PATCH] Remove name from title to prevent length problems --- src/utils/private-help-utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/private-help-utils.ts b/src/utils/private-help-utils.ts index 4f45046..c870894 100644 --- a/src/utils/private-help-utils.ts +++ b/src/utils/private-help-utils.ts @@ -88,7 +88,7 @@ export async function createPrivateHelpTicketThread(client: Client, guild: Guild export async function openModTicketModal(interaction: UserContextMenuCommandInteraction | ChatInputCommandInteraction, member: GuildMember) { const modal = new ModalBuilder() .setCustomId(`open-mod-ticket_${member.id}`) - .setTitle(`Opening A Mod Ticket With ${member.displayName}`); + .setTitle('Opening A Mod Ticket'); const titleLabel = createTextInput('title', 'Title', `The name of the thread. Defaults to "Mod Ticket For ${member.displayName}" if left empty`, false, TextInputStyle.Short, 100, null); const initialMessageLabel = createTextInput('initial-message', 'Inital Message', 'The inital message sent in the thread', false, TextInputStyle.Paragraph, 1800, null);