diff --git a/zapier/.eslintrc.json b/zapier/.eslintrc.json index 01f1006a96..f619abeeb3 100755 --- a/zapier/.eslintrc.json +++ b/zapier/.eslintrc.json @@ -76,6 +76,11 @@ "react/no-unescaped-entities": "error", "react/display-name": ["error", { "ignoreTranspilerName": true - }] + }], + "prefer-const": ["error", { + "destructuring": "any", + "ignoreReadBeforeAssign": false + }], + "no-var": "error" } } \ No newline at end of file diff --git a/zapier/authentication.js b/zapier/authentication.js index 5aa8fce4c4..afbc8ad912 100755 --- a/zapier/authentication.js +++ b/zapier/authentication.js @@ -9,7 +9,6 @@ const testAuth = (z, bundle) => { return z.request({ url: 'https://api.fyipe.com/zapier/test', }).then((response) => { - console.log('response: ', response); if (response.status === 400) { throw new Error('The API Key or Project ID you supplied is invalid!'); }