refactor: cleanup unused variable (#1652)
This commit is contained in:
@ -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 = () => {
|
||||
|
Reference in New Issue
Block a user