diff options
author | Brandon Millman <brandon.millman@gmail.com> | 2018-07-03 08:11:54 +0800 |
---|---|---|
committer | Brandon Millman <brandon.millman@gmail.com> | 2018-07-03 08:14:46 +0800 |
commit | fd545ec00fc0f4b0a64db8cdb3d5c217e45a6b6a (patch) | |
tree | b429c016aae0d16c1668becaf547cd96536cd327 /packages/website/ts/components/inputs/token_amount_input.tsx | |
parent | 73d8a2adf748e06552a1a7a7a188433c4c41095b (diff) | |
download | dexon-0x-contracts-fd545ec00fc0f4b0a64db8cdb3d5c217e45a6b6a.tar.gz dexon-0x-contracts-fd545ec00fc0f4b0a64db8cdb3d5c217e45a6b6a.tar.zst dexon-0x-contracts-fd545ec00fc0f4b0a64db8cdb3d5c217e45a6b6a.zip |
Remove increase balance link from balance_bounded_input component
Diffstat (limited to 'packages/website/ts/components/inputs/token_amount_input.tsx')
-rw-r--r-- | packages/website/ts/components/inputs/token_amount_input.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/packages/website/ts/components/inputs/token_amount_input.tsx b/packages/website/ts/components/inputs/token_amount_input.tsx index a67120320..93ef516cf 100644 --- a/packages/website/ts/components/inputs/token_amount_input.tsx +++ b/packages/website/ts/components/inputs/token_amount_input.tsx @@ -21,7 +21,6 @@ interface TokenAmountInputProps { shouldCheckAllowance: boolean; onChange: ValidatedBigNumberCallback; onErrorMsgChange?: (errorMsg: React.ReactNode) => void; - onVisitBalancesPageClick?: () => void; lastForceTokenStateRefetch: number; shouldShowErrs?: boolean; shouldShowUnderline?: boolean; @@ -88,7 +87,6 @@ export class TokenAmountInput extends React.Component<TokenAmountInputProps, Tok validate={this._validate.bind(this)} shouldCheckBalance={this.props.shouldCheckBalance} shouldShowIncompleteErrs={this.props.shouldShowIncompleteErrs} - onVisitBalancesPageClick={this.props.onVisitBalancesPageClick} isDisabled={!this.state.isBalanceAndAllowanceLoaded} hintText={this.props.hintText} shouldShowErrs={this.props.shouldShowErrs} |