diff --git a/backend/src/helpers/whatsappQueueMatchingUserQueue.ts b/backend/src/helpers/whatsappQueueMatchingUserQueue.ts index 86a34fe..d7954ac 100644 --- a/backend/src/helpers/whatsappQueueMatchingUserQueue.ts +++ b/backend/src/helpers/whatsappQueueMatchingUserQueue.ts @@ -8,7 +8,7 @@ async function whatsappQueueMatchingUserQueue(userId: number, whatsapp: Whatsapp if (!userQueues || userQueues && userQueues.length == 0) return - console.log('-----> userQueues: ', userQueues); + // console.log('-----> userQueues: ', userQueues); let whats: any = await ShowWhatsAppService(whatsapp.id); @@ -16,7 +16,7 @@ async function whatsappQueueMatchingUserQueue(userId: number, whatsapp: Whatsapp const whatsappQueues = whats.queues.map((e: any) => e.dataValues.name); - console.log('-----> whatsappQueues: ', whatsappQueues); + // console.log('-----> whatsappQueues: ', whatsappQueues); const matchingQueue = userQueues.find(queue => whatsappQueues.includes(queue.name));