From f093253d877ca3e2d746dc31412c1f768be9866d Mon Sep 17 00:00:00 2001 From: efarooqui Date: Wed, 9 Jun 2021 20:01:20 -0700 Subject: [PATCH] Removing unecessary console error --- src/api/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/api/index.js b/src/api/index.js index a149933..895b191 100755 --- a/src/api/index.js +++ b/src/api/index.js @@ -35,7 +35,6 @@ export default ({ config, controller }) => { .then(response => response.json()) .then(data => res.send(data.data)) .catch(err => { - console.info(err) res.status(err.status || 404).send({ error: err.message }) }); })