Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dannyqiu committed Dec 30, 2017
1 parent 33c6e0a commit 3c21a97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stores/AppStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ export default class AppStore extends Store {
this.isClearingAllCache = true;
const clearAppCache = this.clearAppCacheRequest.execute();
const serviceIds = await getServiceIdsFromPartitions();
await Promise.all(serviceIds.map(id => this.actions.service.clearCache({ serviceId: id, })));
await Promise.all(serviceIds.map(id => this.actions.service.clearCache({ serviceId: id })));
await clearAppCache._promise;
this.isClearingAllCache = false;
}
Expand Down

0 comments on commit 3c21a97

Please sign in to comment.