diff options
author | Brandon Millman <brandon.millman@gmail.com> | 2018-04-23 02:17:34 +0800 |
---|---|---|
committer | Brandon Millman <brandon.millman@gmail.com> | 2018-04-23 02:17:34 +0800 |
commit | 96568957263858c6832ae972f9df5f02913549c6 (patch) | |
tree | e7894de57464a0c4b4dce5692de5568294944bbd | |
parent | 121b6949a1e185c0cc9768c2b7042eb3daf124b7 (diff) | |
download | dexon-sol-tools-96568957263858c6832ae972f9df5f02913549c6.tar dexon-sol-tools-96568957263858c6832ae972f9df5f02913549c6.tar.gz dexon-sol-tools-96568957263858c6832ae972f9df5f02913549c6.tar.bz2 dexon-sol-tools-96568957263858c6832ae972f9df5f02913549c6.tar.lz dexon-sol-tools-96568957263858c6832ae972f9df5f02913549c6.tar.xz dexon-sol-tools-96568957263858c6832ae972f9df5f02913549c6.tar.zst dexon-sol-tools-96568957263858c6832ae972f9df5f02913549c6.zip |
Remove some unused imports
-rw-r--r-- | packages/website/ts/components/wallet/wallet.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/website/ts/components/wallet/wallet.tsx b/packages/website/ts/components/wallet/wallet.tsx index 231045bc5..257ea8ac4 100644 --- a/packages/website/ts/components/wallet/wallet.tsx +++ b/packages/website/ts/components/wallet/wallet.tsx @@ -6,7 +6,7 @@ import { Styles, utils as sharedUtils, } from '@0xproject/react-shared'; -import { BigNumber, logUtils } from '@0xproject/utils'; +import { BigNumber } from '@0xproject/utils'; import * as _ from 'lodash'; import FlatButton from 'material-ui/FlatButton'; import { List, ListItem } from 'material-ui/List'; @@ -39,7 +39,6 @@ import { import { backendClient } from 'ts/utils/backend_client'; import { configs } from 'ts/utils/configs'; import { constants } from 'ts/utils/constants'; -import { errorReporter } from 'ts/utils/error_reporter'; import { fetchUtils } from 'ts/utils/fetch_utils'; import { utils } from 'ts/utils/utils'; import { styles as walletItemStyles } from 'ts/utils/wallet_item_styles'; |