From d4ffb4396538e955d16420ceb6fc5e705414f9ef Mon Sep 17 00:00:00 2001 From: OXALD <87108237+OXALD@users.noreply.github.com> Date: Sat, 17 Aug 2024 00:18:01 -0500 Subject: [PATCH] Update SelectCategory.js --- events/ticket/SelectCategory.js | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/events/ticket/SelectCategory.js b/events/ticket/SelectCategory.js index 99df49c..72e4583 100644 --- a/events/ticket/SelectCategory.js +++ b/events/ticket/SelectCategory.js @@ -39,22 +39,22 @@ module.exports = { .setPlaceholder('Select a category') .addOptions([ { - label: 'Report', - description: 'Report a user', - value: 'report', - emoji: '🐛' + label: 'General Inquiry', + description: 'For general questions and inquiries', + value: 'general_inquiry', + emoji: '🗨️' }, { - label: 'Question', - description: 'any question', - value: 'question', - emoji: '📝' + label: 'Technical Support', + description: 'For technical issues and support', + value: 'technical_support', + emoji: '🛠️' }, { - label: 'Other', - description: 'Other', - value: 'other', - emoji: '📁' + label: 'Billing Support', + description: 'For billing and payment issues', + value: 'billing_support', + emoji: '💰' } ]) ) @@ -74,4 +74,4 @@ module.exports = { }) } } -} \ No newline at end of file +}