refactor: cleanup unused variable (#1652)

This commit is contained in:
Caleb 2018-08-27 10:23:42 -06:00 committed by Shawn Erquhart
parent 922b1846cb
commit a9666aadd4

View File

@ -33,10 +33,8 @@ class Collection extends React.Component {
};
renderEntriesCollection = () => {
const { name, collection } = this.props;
return (
<EntriesCollection collection={collection} name={name} viewStyle={this.state.viewStyle} />
);
const { collection } = this.props;
return <EntriesCollection collection={collection} viewStyle={this.state.viewStyle} />;
};
renderEntriesSearch = () => {