From f328d003f62990c107f37239225342c4133ed723 Mon Sep 17 00:00:00 2001 From: Vesa Luusua Date: Tue, 18 Jul 2017 19:26:01 +0300 Subject: [PATCH] disable eslint on console error. --- src/containers/SearchPage/SearchPage.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/containers/SearchPage/SearchPage.js b/src/containers/SearchPage/SearchPage.js index 91d0f555..a4eee110 100644 --- a/src/containers/SearchPage/SearchPage.js +++ b/src/containers/SearchPage/SearchPage.js @@ -47,6 +47,7 @@ export class SearchPageComponent extends Component { }) .catch(error => { // In case of error, stop recursive loop and report error. + // eslint-disable-next-line no-console console.error(`An error (${error} occured while trying to retrieve map listings`); }); }