Skip to content

Commit

Permalink
Fix crashing bug in LO mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
trungnx committed Nov 20, 2019
1 parent a5863d0 commit 5fbb3fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/containers/LimitOrder/LimitOrderForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export default class LimitOrderForm extends React.Component {
};

getListWarningOrdersComp = () => {
if (!this.props.account) return null;
if (!this.props.account) return [];

let higherRateOrders = [];
const triggerRate = this.props.limitOrder.sideTrade === "buy" ? converters.divOfTwoNumber(1, this.props.limitOrder.triggerBuyRate) : this.props.limitOrder.triggerRate;
Expand Down

0 comments on commit 5fbb3fc

Please sign in to comment.