diff --git a/src/common/helper.js b/src/common/helper.js index 58522130..b9b2ea63 100644 --- a/src/common/helper.js +++ b/src/common/helper.js @@ -1185,16 +1185,8 @@ async function sendSelfServiceNotification (type, recipients, data) { * @param {Object} request the request */ async function submitZendeskRequest (request) { - console.log('*************************') - console.log(JSON.stringify({ - request: { - ...request, - collaborators: [..._.map(config.SELF_SERVICE_EMAIL_CC_ACCOUNTS, 'email')] - } - })) - console.log('*************************') try { - const res = await axios.post(`${ZENDESK_API_URL}/api/v2/requests`, { + const res = await axios.post(`${config.ZENDESK_API_URL}/api/v2/requests`, { request: { ...request, collaborators: [..._.map(config.SELF_SERVICE_EMAIL_CC_ACCOUNTS, 'email')]