remove usage of template string as `ethBalance` is only of string type now
This commit is contained in:
parent
d9e428c4ed
commit
92cb386cc7
|
@ -36,7 +36,7 @@ const EthValue = ({ onSetMax }: EthValueProps) => {
|
|||
</Paragraph>
|
||||
<ButtonLink
|
||||
color={disabled ? 'disabled' : 'secondary'}
|
||||
onClick={() => !disabled && onSetMax(`${ethBalance}`)}
|
||||
onClick={() => !disabled && onSetMax(ethBalance)}
|
||||
weight="bold"
|
||||
>
|
||||
Send max
|
||||
|
|
Loading…
Reference in New Issue