File tree 1 file changed +11
-3
lines changed
packages/appstore/src/components/cfds-listing-logged-out
1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -34,9 +34,17 @@ const CFDsListingLoggedOut = observer(() => {
34
34
action_type = { existing_account . action_type }
35
35
availability = { selected_region }
36
36
clickable_icon
37
- icon = { existing_account . icon }
38
- sub_title = { existing_account ?. sub_title }
39
- name = { existing_account ?. name ?? '' }
37
+ icon = {
38
+ is_eu_user && existing_account . market_type !== 'financial'
39
+ ? 'Standard'
40
+ : existing_account . icon
41
+ }
42
+ sub_title = { existing_account ?. sub_title } //
43
+ name = {
44
+ is_eu_user && existing_account . market_type !== 'financial'
45
+ ? 'Standard'
46
+ : existing_account . name
47
+ }
40
48
short_code_and_region = { existing_account ?. short_code_and_region }
41
49
platform = { existing_account . platform }
42
50
description = { existing_account . description }
You can’t perform that action at this time.
0 commit comments