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 = () => { renderEntriesCollection = () => {
const { name, collection } = this.props; const { collection } = this.props;
return ( return <EntriesCollection collection={collection} viewStyle={this.state.viewStyle} />;
<EntriesCollection collection={collection} name={name} viewStyle={this.state.viewStyle} />
);
}; };
renderEntriesSearch = () => { renderEntriesSearch = () => {