Skip to content

Commit

Permalink
Fix linting errors from IDEA code reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
bkimminich committed May 26, 2019
1 parent 23714d7 commit 9e79b04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routes/profileImageFileUpload.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module.exports = function fileUpload () {
})
})
models.User.findByPk(loggedInUser.data.id).then(user => {
return user.update({profileImage: loggedInUser.data.id + '.' + uploadedFileType.ext})
return user.update({ profileImage: loggedInUser.data.id + '.' + uploadedFileType.ext })
}).catch(error => {
next(error)
})
Expand Down

0 comments on commit 9e79b04

Please sign in to comment.