We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2286cf2 commit 8bf8d22Copy full SHA for 8bf8d22
packages/core/src/Stores/traders-hub-store.js
@@ -861,8 +861,8 @@ export default class TradersHubStore extends BaseStore {
861
? {
862
// This is for backward compatibility
863
// before BE change, EU market_type is financial. With BE change, EU market_type becomes standard
864
- icon: account.market_type === 'financial' ? account.icon : 'Standard',
865
- name: account.market_type === 'financial' ? account.name : 'Standard',
+ icon: account.market_type === 'synthetic' ? 'Standard' : account.icon,
+ name: account.market_type === 'synthetic' ? 'Standard' : account.name,
866
platform: account.platform,
867
description: account.description,
868
key: `trading_app_card_${account.name}`,
0 commit comments