Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Edwards authored and Chris Edwards committed Jan 13, 2017
1 parent 33a24cc commit 53d9d59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handlers/location.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function handler(event, context, callback) {
callback(null, response({ message }, 400));
} else {
getPhoneNumber(name)
.then(data => {
.then((data) => {
callback(null, response(data));
})
.catch(({ statusCode, message }) => {
Expand Down

0 comments on commit 53d9d59

Please sign in to comment.