diff --git a/app/services/kredits.js b/app/services/kredits.js index 30e3eb4..87dcb50 100644 --- a/app/services/kredits.js +++ b/app/services/kredits.js @@ -210,8 +210,8 @@ export default Service.extend({ getContributors () { return this.kredits.Contributor.all() - .then((contributors) => { - return contributors.map((contributor) => { + .then(contributors => { + return contributors.map(contributor => { return Contributor.create(contributor); }); });