Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
schnogz committed Jun 4, 2018
1 parent 9157e25 commit 0283269
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Expand Up @@ -37,7 +37,6 @@ class UnusedAddressesContainer extends React.PureComponent {
const { account, unusedAddresses, currentReceiveIndex, isDefault, coreActions, walletActions, modalsActions, routerActions, search } = this.props
const onEditLabel = (i) => this.props.componentActions.editAddressLabel(account.index, this.props.walletIndex, i)
const onDeleteLabel = (i) => this.props.componentActions.deleteAddressLabel(account.index, this.props.walletIndex, i)
//const onDeleteLabel = (i) => coreActions.deleteHdAddressLabel(account.index, i)
const onEditBtcAccountLabel = () => walletActions.editBtcAccountLabel(account.index, account.label)
const onShowXPub = () => modalsActions.showModal('ShowXPub', { xpub: account.xpub })
const onMakeDefault = () => coreActions.setDefaultAccountIdx(account.index)
Expand Down
Expand Up @@ -46,8 +46,7 @@ const UnusedAddressesTemplate = ({ account, currentReceiveIndex, unusedAddresses
</TableCell>
</TableHeader>
{addresses}
</Table>
)
</Table>)
}

export default UnusedAddressesTemplate

0 comments on commit 0283269

Please sign in to comment.