fix: use enum

This commit is contained in:
Mohamed Marrouchi 2025-03-24 12:16:11 +01:00
parent 172a167296
commit 9ffd965069

View File

@ -184,12 +184,12 @@ describe('EnvelopeFactory', () => {
const input = "Choose {{context.user.first_name}}'s option";
const quickReplies = [
{
content_type: 'text',
content_type: QuickReplyType.text,
title: 'Yes {{contact.company_name}}',
payload: 'do_{{context.user.id}}',
},
{
content_type: 'text',
content_type: QuickReplyType.text,
title: 'No {{contact.company_name}}',
payload: 'dont_{{context.user.id}}',
},