Skip to content

Commit bb88940

Browse files
committed
fix(auth): lint
1 parent e5c74df commit bb88940

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/auth.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ passport.use(new (require('passport-local').Strategy)(
9898
(email, password, done) => {
9999
debug('will authenticate user(email: "%s")', email)
100100
User.findOne({
101-
where: {email},
101+
where: {email},
102102
attributes: {include: ['password_digest']}
103103
})
104104
.then(user => {

0 commit comments

Comments
 (0)