diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-10-11 08:14:17 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-10-11 08:14:17 +0800 |
commit | 9fe88b214653f39f63266198f426a68dafbe7890 (patch) | |
tree | 5178c216e89e458fcb2f8b5d752378fdfd04ac70 /packages/instant/src | |
parent | c8e7d225ca4bc9774b4f902c01668873cbdce6a1 (diff) | |
download | dexon-sol-tools-9fe88b214653f39f63266198f426a68dafbe7890.tar dexon-sol-tools-9fe88b214653f39f63266198f426a68dafbe7890.tar.gz dexon-sol-tools-9fe88b214653f39f63266198f426a68dafbe7890.tar.bz2 dexon-sol-tools-9fe88b214653f39f63266198f426a68dafbe7890.tar.lz dexon-sol-tools-9fe88b214653f39f63266198f426a68dafbe7890.tar.xz dexon-sol-tools-9fe88b214653f39f63266198f426a68dafbe7890.tar.zst dexon-sol-tools-9fe88b214653f39f63266198f426a68dafbe7890.zip |
Lint and update deps
Diffstat (limited to 'packages/instant/src')
-rw-r--r-- | packages/instant/src/components/amount_input.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/instant/src/components/amount_input.tsx b/packages/instant/src/components/amount_input.tsx index 3f16869b4..38810063d 100644 --- a/packages/instant/src/components/amount_input.tsx +++ b/packages/instant/src/components/amount_input.tsx @@ -29,7 +29,7 @@ export class AmountInput extends React.Component<AmountInputProps> { </Container> ); } - private _handleChange = (event: React.ChangeEvent<HTMLInputElement>): void => { + private readonly _handleChange = (event: React.ChangeEvent<HTMLInputElement>): void => { const value = event.target.value; let bigNumberValue; if (!_.isEmpty(value)) { |