Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions events/ticket/SelectCategory.js
Original file line number Diff line number Diff line change
Expand Up @@ -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: '💰'
}
])
)
Expand All @@ -74,4 +74,4 @@ module.exports = {
})
}
}
}
}