Skip to content

Commit 2945899

Browse files
committed
Remove debugging console.logs
1 parent 59a647a commit 2945899

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

app/routes/contacts.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ router.post('/contacts', verifyJWT, resolveUser, (req, res, next) => {
2424
return c.phoneNumber.replace('+', '');
2525
});
2626

27-
console.log(numberList);
2827
// Then, we find all the registered users that match the numbers that were sent for syncing.
2928
return User.findAll({
3029
attributes: ['phoneNumber'] ,
@@ -39,7 +38,6 @@ router.post('/contacts', verifyJWT, resolveUser, (req, res, next) => {
3938
return _.includes(formattedRegisteredNumbers, contact.phoneNumber.replace('+', ''));
4039
});
4140

42-
console.log(validContacts);
4341
return req.user.update({contactsList: validContacts});
4442
})
4543
.then( updatedUser => {

0 commit comments

Comments
 (0)