diff options
author | Brandon Millman <brandon@0xproject.com> | 2018-07-03 09:25:43 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-03 09:25:43 +0800 |
commit | 835d06dcdcdfd70414754608466cad3c41feaa9e (patch) | |
tree | a0b827fdf256e2ffcfb0951c5a10f09cd396e6e4 /packages/website/ts/components/inputs/eth_amount_input.tsx | |
parent | fe68114f3921a52fd6b6aa6cfef8d5c325499711 (diff) | |
parent | fd545ec00fc0f4b0a64db8cdb3d5c217e45a6b6a (diff) | |
download | dexon-sol-tools-835d06dcdcdfd70414754608466cad3c41feaa9e.tar.gz dexon-sol-tools-835d06dcdcdfd70414754608466cad3c41feaa9e.tar.zst dexon-sol-tools-835d06dcdcdfd70414754608466cad3c41feaa9e.zip |
Merge pull request #810 from 0xProject/feature/wesbite/remove-add-balance
Remove increase balance link from balance_bounded_input component
Diffstat (limited to 'packages/website/ts/components/inputs/eth_amount_input.tsx')
-rw-r--r-- | packages/website/ts/components/inputs/eth_amount_input.tsx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/packages/website/ts/components/inputs/eth_amount_input.tsx b/packages/website/ts/components/inputs/eth_amount_input.tsx index 1f0f27410..552d4277a 100644 --- a/packages/website/ts/components/inputs/eth_amount_input.tsx +++ b/packages/website/ts/components/inputs/eth_amount_input.tsx @@ -14,9 +14,7 @@ interface EthAmountInputProps { onChange: ValidatedBigNumberCallback; onErrorMsgChange?: (errorMsg: React.ReactNode) => void; shouldShowIncompleteErrs: boolean; - onVisitBalancesPageClick?: () => void; shouldCheckBalance: boolean; - shouldHideVisitBalancesLink?: boolean; shouldShowErrs?: boolean; shouldShowUnderline?: boolean; style?: React.CSSProperties; @@ -46,8 +44,6 @@ export class EthAmountInput extends React.Component<EthAmountInputProps, EthAmou onErrorMsgChange={this.props.onErrorMsgChange} shouldCheckBalance={this.props.shouldCheckBalance} shouldShowIncompleteErrs={this.props.shouldShowIncompleteErrs} - onVisitBalancesPageClick={this.props.onVisitBalancesPageClick} - shouldHideVisitBalancesLink={this.props.shouldHideVisitBalancesLink} hintText={this.props.hintText} shouldShowErrs={this.props.shouldShowErrs} shouldShowUnderline={this.props.shouldShowUnderline} |