DEV: duplicate and unreachable code after `return`
This commit is contained in:
parent
1d8266a623
commit
97e6e3b133
|
@ -12,8 +12,5 @@ export default Ember.Component.extend({
|
||||||
return this.get("categories").any(c => {
|
return this.get("categories").any(c => {
|
||||||
return !Ember.isEmpty(c.get("uploaded_logo.url"));
|
return !Ember.isEmpty(c.get("uploaded_logo.url"));
|
||||||
});
|
});
|
||||||
return this.get("categories").any(
|
|
||||||
c => !Ember.isEmpty(c.get("uploaded_logo.url"))
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue