Skip to content

Commit

Permalink
Promise fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Robsahm committed Dec 1, 2016
1 parent f060920 commit 645f1a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const initializeConfigUpdate = (environment) => {
});
};

return new Promise(connect(resolve, reject));
return new Promise((resolve, reject) => connect(resolve, reject));
};

const getConfig = () => {
Expand Down

0 comments on commit 645f1a8

Please sign in to comment.