From e7eb700fb2c40ce8c18ecdc189902d7ffdd1aeec Mon Sep 17 00:00:00 2001 From: adriano Date: Fri, 2 Jun 2023 15:46:58 -0300 Subject: [PATCH] =?UTF-8?q?Coment=C3=A1rio=20de=20console.log?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/src/helpers/whatsappQueueMatchingUserQueue.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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));