diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-10-24 07:28:08 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-10-24 07:28:08 +0800 |
commit | 751b87af962d5b1f9f65514c10de2f7cb0b13c34 (patch) | |
tree | f8183c5a76a16eef3b6b8688a8bade04b831aedc /packages/instant | |
parent | a5edb0b421afaaa34290dc3ada73da6bca3c556a (diff) | |
download | dexon-sol-tools-751b87af962d5b1f9f65514c10de2f7cb0b13c34.tar dexon-sol-tools-751b87af962d5b1f9f65514c10de2f7cb0b13c34.tar.gz dexon-sol-tools-751b87af962d5b1f9f65514c10de2f7cb0b13c34.tar.bz2 dexon-sol-tools-751b87af962d5b1f9f65514c10de2f7cb0b13c34.tar.lz dexon-sol-tools-751b87af962d5b1f9f65514c10de2f7cb0b13c34.tar.xz dexon-sol-tools-751b87af962d5b1f9f65514c10de2f7cb0b13c34.tar.zst dexon-sol-tools-751b87af962d5b1f9f65514c10de2f7cb0b13c34.zip |
fix: remove unused callback info
Diffstat (limited to 'packages/instant')
-rw-r--r-- | packages/instant/src/components/scaling_amount_input.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/instant/src/components/scaling_amount_input.tsx b/packages/instant/src/components/scaling_amount_input.tsx index db3062b57..233e29cff 100644 --- a/packages/instant/src/components/scaling_amount_input.tsx +++ b/packages/instant/src/components/scaling_amount_input.tsx @@ -12,7 +12,7 @@ export interface ScalingAmountInputProps { textLengthThreshold: number; fontColor?: ColorOption; value?: BigNumber; - onChange: (value?: BigNumber, fontSize?: number) => void; + onChange: (value?: BigNumber) => void; onFontSizeChange: (fontSizePx: number) => void; } @@ -36,7 +36,7 @@ export class ScalingAmountInput extends React.Component<ScalingAmountInputProps> /> ); } - private readonly _handleChange = (event: React.ChangeEvent<HTMLInputElement>, fontSize?: number): void => { + private readonly _handleChange = (event: React.ChangeEvent<HTMLInputElement>): void => { const value = event.target.value; let bigNumberValue; if (!_.isEmpty(value)) { @@ -47,6 +47,6 @@ export class ScalingAmountInput extends React.Component<ScalingAmountInputProps> return; } } - this.props.onChange(bigNumberValue, fontSize); + this.props.onChange(bigNumberValue); }; } |