Browse Source

fix(lint): fix lint errors

renovate/lint-staged-8.x
Jack Mallers 7 years ago
parent
commit
e60297af85
  1. 8
      app/components/Contacts/Network.js
  2. 2
      app/routes/app/components/App.js

8
app/components/Contacts/Network.js

@ -22,7 +22,7 @@ class Network extends Component {
channels: {
searchQuery,
filterPulldown,
filter,
filter
// loadingChannelPubkeys,
// closingChannelIds
},
@ -118,7 +118,7 @@ class Network extends Component {
}
</ul>
</section>
<section className={styles.refreshContainer}>
<span className={styles.refresh} onClick={refreshClicked} ref={(ref) => { this.repeat = ref }}>
{
@ -168,7 +168,7 @@ Network.propTypes = {
currentChannels: PropTypes.array.isRequired,
nodes: PropTypes.array.isRequired,
nonActiveFilters: PropTypes.array.isRequired,
channels: PropTypes.object.isRequired,
balance: PropTypes.object.isRequired,
currentTicker: PropTypes.object.isRequired,
@ -178,7 +178,7 @@ Network.propTypes = {
toggleFilterPulldown: PropTypes.func.isRequired,
changeFilter: PropTypes.func.isRequired,
updateChannelSearchQuery: PropTypes.func.isRequired,
openContactModal: PropTypes.func.isRequired,
openContactModal: PropTypes.func.isRequired
}
export default Network

2
app/routes/app/components/App.js

@ -102,8 +102,6 @@ App.propTypes = {
fetchBalance: PropTypes.func.isRequired,
fetchDescribeNetwork: PropTypes.func.isRequired,
children: PropTypes.object.isRequired
}

Loading…
Cancel
Save