From 9fe88b214653f39f63266198f426a68dafbe7890 Mon Sep 17 00:00:00 2001 From: fragosti Date: Wed, 10 Oct 2018 17:14:17 -0700 Subject: Lint and update deps --- packages/instant/package.json | 4 ++-- packages/instant/src/components/amount_input.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'packages') diff --git a/packages/instant/package.json b/packages/instant/package.json index cc7d8c9eb..9ceefdc0e 100644 --- a/packages/instant/package.json +++ b/packages/instant/package.json @@ -44,10 +44,10 @@ "homepage": "https://github.com/0xProject/0x-monorepo/packages/instant/README.md", "dependencies": { "@0xproject/asset-buyer": "^2.0.0", - "@0xproject/types": "^1.1.1", + "@0xproject/types": "^1.1.4", "@0xproject/typescript-typings": "^2.0.2", "@0xproject/utils": "^2.0.2", - "@0xproject/web3-wrapper": "^3.0.1", + "@0xproject/web3-wrapper": "^3.0.3", "ethereum-types": "^1.0.8", "lodash": "^4.17.10", "polished": "^2.2.0", 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 { ); } - private _handleChange = (event: React.ChangeEvent): void => { + private readonly _handleChange = (event: React.ChangeEvent): void => { const value = event.target.value; let bigNumberValue; if (!_.isEmpty(value)) { -- cgit