aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/inputs/eth_amount_input.tsx
diff options
context:
space:
mode:
authorBrandon Millman <brandon.millman@gmail.com>2018-07-03 08:11:54 +0800
committerBrandon Millman <brandon.millman@gmail.com>2018-07-03 08:14:46 +0800
commitfd545ec00fc0f4b0a64db8cdb3d5c217e45a6b6a (patch)
treeb429c016aae0d16c1668becaf547cd96536cd327 /packages/website/ts/components/inputs/eth_amount_input.tsx
parent73d8a2adf748e06552a1a7a7a188433c4c41095b (diff)
downloaddexon-sol-tools-fd545ec00fc0f4b0a64db8cdb3d5c217e45a6b6a.tar
dexon-sol-tools-fd545ec00fc0f4b0a64db8cdb3d5c217e45a6b6a.tar.gz
dexon-sol-tools-fd545ec00fc0f4b0a64db8cdb3d5c217e45a6b6a.tar.bz2
dexon-sol-tools-fd545ec00fc0f4b0a64db8cdb3d5c217e45a6b6a.tar.lz
dexon-sol-tools-fd545ec00fc0f4b0a64db8cdb3d5c217e45a6b6a.tar.xz
dexon-sol-tools-fd545ec00fc0f4b0a64db8cdb3d5c217e45a6b6a.tar.zst
dexon-sol-tools-fd545ec00fc0f4b0a64db8cdb3d5c217e45a6b6a.zip
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.tsx4
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}