diff --git a/packages/trader/src/Stores/Modules/Trading/trade-store.js b/packages/trader/src/Stores/Modules/Trading/trade-store.js index 5a6c5f308e10..2bdb943764fa 100644 --- a/packages/trader/src/Stores/Modules/Trading/trade-store.js +++ b/packages/trader/src/Stores/Modules/Trading/trade-store.js @@ -1245,7 +1245,7 @@ export default class TradeStore extends BaseStore { // Sometimes the initial barrier doesn't match with current barrier choices received from API. // When this happens we want to populate the list of barrier choices to choose from since the value cannot be specified manually - if (this.is_turbos || this.is_vanilla) { + if ((this.is_turbos || this.is_vanilla) && response.error.details.barrier_choices) { const { barrier_choices, max_stake, min_stake } = response.error.details; this.setStakeBoundary(contract_type, min_stake, max_stake); this.setBarrierChoices(barrier_choices);