DEV: duplicate and unreachable code after `return`

This commit is contained in:
Kyle Zhao 2018-12-05 09:17:20 -05:00
parent 1d8266a623
commit 97e6e3b133
1 changed files with 0 additions and 3 deletions

View File

@ -12,8 +12,5 @@ export default Ember.Component.extend({
return this.get("categories").any(c => {
return !Ember.isEmpty(c.get("uploaded_logo.url"));
});
return this.get("categories").any(
c => !Ember.isEmpty(c.get("uploaded_logo.url"))
);
}
});