Fix removal of etherscanLink prop in Balances component
This commit is contained in:
parent
336c9902dc
commit
b27cad19cc
|
@ -43,6 +43,7 @@ type Props = {
|
|||
activeTokens: List<Token>,
|
||||
safeAddress: string,
|
||||
safeName: string,
|
||||
etherScanLink: string,
|
||||
ethBalance: string,
|
||||
createTransaction: Function,
|
||||
}
|
||||
|
@ -106,6 +107,7 @@ class Balances extends React.Component<Props, State> {
|
|||
safeAddress,
|
||||
activeTokens,
|
||||
safeName,
|
||||
etherScanLink,
|
||||
ethBalance,
|
||||
createTransaction,
|
||||
} = this.props
|
||||
|
@ -198,6 +200,7 @@ class Balances extends React.Component<Props, State> {
|
|||
<SendModal
|
||||
onClose={this.hideSendFunds}
|
||||
isOpen={sendFunds.isOpen}
|
||||
etherScanLink={etherScanLink}
|
||||
safeAddress={safeAddress}
|
||||
safeName={safeName}
|
||||
ethBalance={ethBalance}
|
||||
|
|
Loading…
Reference in New Issue