Browse Source

fix(lint): fix linting errors

renovate/lint-staged-8.x
Jack Mallers 7 years ago
parent
commit
19a86be5df
  1. 6
      app/components/Contacts/ContactModal.js

6
app/components/Contacts/ContactModal.js

@ -35,6 +35,10 @@ const ContactModal = ({
} }
} }
const removeClicked = () => {
closeChannel({ channel_point: channel.channel_point, chan_id: channel.chan_id, force: !channel.active })
}
// the remote node for the channel // the remote node for the channel
const node = find(channelNodes, { pub_key: channel.remote_pubkey }) const node = find(channelNodes, { pub_key: channel.remote_pubkey })
@ -109,7 +113,7 @@ const ContactModal = ({
</div> </div>
</span> </span>
: :
<div onClick={() => closeChannel({ channel_point: channel.channel_point, chan_id: channel.chan_id, force: !channel.active })}>Remove</div> <div onClick={removeClicked}>Remove</div>
} }
</footer> </footer>
</div> </div>

Loading…
Cancel
Save