(title, description, color)
| 6 | import { InteractionHelper } from '../../utils/interactionHelper.js'; |
| 7 | |
| 8 | function buildEmbed(title, description, color) { |
| 9 | return new EmbedBuilder() |
| 10 | .setTitle(title) |
| 11 | .setDescription(description) |
| 12 | .setColor(color); |
| 13 | } |
| 14 | |
| 15 | export default { |
| 16 | name: 'ticket_feedback_comment_modal', |