Skip to content

Commit

Permalink
refactor: cleanup unused variable (#1652)
Browse files Browse the repository at this point in the history
  • Loading branch information
tech4him1 authored and erquhart committed Aug 27, 2018
1 parent 922b184 commit a9666aa
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 = () => {
Expand Down

0 comments on commit a9666aa

Please sign in to comment.