Skip to content
This repository was archived by the owner on Feb 22, 2024. It is now read-only.

Commit a136507

Browse files
committed
Changed regulatory message
1 parent 447ffa0 commit a136507

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/javascript/app/common/account_opening.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const AccountOpening = (() => {
5656
}
5757

5858
CommonFunctions.elementTextContent(CommonFunctions.getElementById('lc-name'), lc_to_upgrade_to.name);
59-
CommonFunctions.elementTextContent(CommonFunctions.getElementById('lc-country'), lc_to_upgrade_to.country);
59+
CommonFunctions.elementTextContent(CommonFunctions.getElementById('lc-country'), lc_to_upgrade_to.country === 'Isle of Man' ? 'the Isle of Man' : lc_to_upgrade_to.country);
6060
if (getPropertyValue(landing_company, ['financial_company', 'shortcode']) === 'maltainvest') {
6161
professionalClient.init(is_financial, false);
6262
}

src/templates/_common/components/forms_common_rows.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ export const Tnc = () => (
202202
export const Jurisdiction = () => (
203203
<Fieldset legend={it.L('Jurisdiction and Choice of Law')}>
204204
<div className='gr-12'>
205-
<p>{it.L('Your account will be opened with [_1], [_2] and subject to the jurisdiction and laws of the [_3].', '<span id="lc-name"></span>', '<span id="lc-regulator"></span>', '<span id="lc-country"></span>')}</p>
205+
<p>{it.L('Your account will be opened with [_1], [_2] and will be subject to the laws of [_3].', '<span id="lc-name"></span>', '<span id="lc-regulator"></span>', '<span id="lc-country"></span>')}</p>
206206
</div>
207207
</Fieldset>
208208
);

0 commit comments

Comments
 (0)