aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/inputs/eth_amount_input.tsx
diff options
context:
space:
mode:
authorJacob Evans <dekz@dekz.net>2018-07-03 14:58:08 +0800
committerGitHub <noreply@github.com>2018-07-03 14:58:08 +0800
commit499915042ea644bec7266e5b4f09b624e55de6f1 (patch)
treeced473d564e65f18f2647e1009f7752ca8532865 /packages/website/ts/components/inputs/eth_amount_input.tsx
parent1a901554cceab03ead6129a1f41d87349fc3fe07 (diff)
parent328da21420e54ac0f2d9e2d7bcb894cc13f3bea8 (diff)
downloaddexon-sol-tools-499915042ea644bec7266e5b4f09b624e55de6f1.tar
dexon-sol-tools-499915042ea644bec7266e5b4f09b624e55de6f1.tar.gz
dexon-sol-tools-499915042ea644bec7266e5b4f09b624e55de6f1.tar.bz2
dexon-sol-tools-499915042ea644bec7266e5b4f09b624e55de6f1.tar.lz
dexon-sol-tools-499915042ea644bec7266e5b4f09b624e55de6f1.tar.xz
dexon-sol-tools-499915042ea644bec7266e5b4f09b624e55de6f1.tar.zst
dexon-sol-tools-499915042ea644bec7266e5b4f09b624e55de6f1.zip
Merge branch 'v2-prototype' into eth-lightwallet-subprovider-final
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}