Skip to content

Commit

Permalink
Remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
aiyan committed Aug 5, 2020
1 parent 1c0f3dd commit b0139ba
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/api/mfa/controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,6 @@ const enrollController = R.curry(async (config, req, res) => {
throw e;
}

console.log(data);

/*
Expected response:
{
Expand All @@ -109,7 +107,6 @@ const verifyController = R.curry(async (config, req, res) => {
} catch (e) {
if (e.response && e.response.body) {
const data = e.response.body;
console.log(data);

if (data.error_description === 'Invalid binding_code.') {
res.status(403).json({
Expand Down

0 comments on commit b0139ba

Please sign in to comment.