From 22fe13d54b2081d68d346243b5ce00762f541169 Mon Sep 17 00:00:00 2001 From: Sabeur Thabti Date: Thu, 17 Nov 2016 22:07:00 +0000 Subject: [PATCH] remove console --- src/helpers/ApiClient.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/helpers/ApiClient.js b/src/helpers/ApiClient.js index bbdbf9b..6bde5bf 100644 --- a/src/helpers/ApiClient.js +++ b/src/helpers/ApiClient.js @@ -18,7 +18,6 @@ export default class ApiClient { methods.forEach((method) => this[method] = (path, { params, data } = {}) => new Promise((resolve, reject) => { const request = superagent[method](formatUrl(path)); - console.log(formatUrl(path), '-------'); if (params) { request.query(params);