Removing unecessary console error

This commit is contained in:
efarooqui
2021-06-09 20:01:20 -07:00
parent 011c667805
commit f093253d87

View File

@@ -35,7 +35,6 @@ export default ({ config, controller }) => {
.then(response => response.json()) .then(response => response.json())
.then(data => res.send(data.data)) .then(data => res.send(data.data))
.catch(err => { .catch(err => {
console.info(err)
res.status(err.status || 404).send({ error: err.message }) res.status(err.status || 404).send({ error: err.message })
}); });
}) })