unused variable

This commit is contained in:
Riley Davis
2017-03-22 17:10:11 -06:00
parent fb2f8ef074
commit 4b0d0fed53
+1 -1
View File
@@ -104,7 +104,7 @@ router.put('/password/reset', (req, res, next) => {
.then(([user, loc]) => {
return Promise.all([UsersService.changePassword(user.id, password), loc]);
})
.then(([_, loc]) => {
.then(([ , loc]) => {
res.json({redirect: loc});
})
.catch(() => {