This commit is contained in:
Steve Klebanoff
2018-11-02 13:30:34 -07:00
parent d160792923
commit 389665d3a1
2 changed files with 2 additions and 2 deletions

View File

@@ -51,7 +51,7 @@ export class ScalingAmountInput extends React.Component<ScalingAmountInputProps,
}
public render(): React.ReactNode {
const { textLengthThreshold, fontColor, maxFontSizePx, value, onFontSizeChange } = this.props;
const { textLengthThreshold, fontColor, maxFontSizePx, onFontSizeChange } = this.props;
return (
<ScalingInput
maxFontSizePx={maxFontSizePx}

View File

@@ -2,7 +2,7 @@ import { BuyQuote } from '@0x/asset-buyer';
import { BigNumber } from '@0x/utils';
import * as _ from 'lodash';
import { ActionsUnion, OrderState } from '../types';
import { ActionsUnion } from '../types';
export interface PlainAction<T extends string> {
type: T;