Change undefined to null

This commit is contained in:
Brandon Millman
2018-04-05 12:13:55 -07:00
parent cbe61ac315
commit c396be42b9

View File

@@ -127,9 +127,7 @@ export class WrapEtherItem extends React.Component<WrapEtherItemProps, WrapEther
<div className="pl1" style={{ paddingTop: 10 }}>
<i className="zmdi zmdi-spinner zmdi-hc-spin" />
</div>
) : (
undefined
);
) : null;
}
private _renderWrapEtherConfirmationButton() {
const isWrappingEth = this.props.direction === Side.Deposit;