removing unused imports

This commit is contained in:
Steve Klebanoff
2018-11-01 11:35:53 -07:00
parent f9d13cd43a
commit 82b6a81a22
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ import { Dispatch } from 'redux';
import { BuyOrderStateButtons } from '../components/buy_order_state_buttons';
import { Action, actions } from '../redux/actions';
import { State } from '../redux/reducer';
import { OrderProcessState, OrderState, ZeroExInstantError } from '../types';
import { OrderProcessState, ZeroExInstantError } from '../types';
import { errorFlasher } from '../util/error_flasher';
import { etherscanUtil } from '../util/etherscan';

View File

@@ -4,7 +4,7 @@ import * as _ from 'lodash';
import { BigNumberInput } from '../util/big_number_input';
import { ActionsUnion, OrderState, SimulatedProgress } from '../types';
import { ActionsUnion } from '../types';
export interface PlainAction<T extends string> {
type: T;