diff --git a/config/v3/new_account_maltainvest/send.json b/config/v3/new_account_maltainvest/send.json index 06b1b5aa5..5ea2e0674 100644 --- a/config/v3/new_account_maltainvest/send.json +++ b/config/v3/new_account_maltainvest/send.json @@ -201,9 +201,9 @@ ] }, "first_name": { - "description": "Within 2-50 characters, use only letters, spaces, hyphens, full-stops or apostrophes.", + "description": "Within 1-50 characters, use only letters, spaces, hyphens, full-stops or apostrophes.", "type": "string", - "pattern": "^(?!.*\\s{2,})[\\p{L}\\s'.-]{2,50}$", + "pattern": "^(?!.*\\s{2,})[\\p{L}\\s'.-]{1,50}$", "sensitive": 1 }, "income_source": { @@ -219,9 +219,9 @@ ] }, "last_name": { - "description": "Within 2-50 characters, use only letters, spaces, hyphens, full-stops or apostrophes.", + "description": "Within 1-50 characters, use only letters, spaces, hyphens, full-stops or apostrophes.", "type": "string", - "pattern": "^(?!.*\\s{2,})[\\p{L}\\s'.-]{2,50}$", + "pattern": "^(?!.*\\s{2,})[\\p{L}\\s'.-]{1,50}$", "sensitive": 1 }, "leverage_impact_trading": { diff --git a/config/v3/new_account_real/send.json b/config/v3/new_account_real/send.json index 7035307e0..fc5e2bdcf 100644 --- a/config/v3/new_account_real/send.json +++ b/config/v3/new_account_real/send.json @@ -106,15 +106,15 @@ ] }, "first_name": { - "description": "Within 2-50 characters, use only letters, spaces, hyphens, full-stops or apostrophes.", + "description": "Within 1-50 characters, use only letters, spaces, hyphens, full-stops or apostrophes.", "type": "string", - "pattern": "^(?!.*\\s{2,})[\\p{L}\\s'.-]{2,50}$", + "pattern": "^(?!.*\\s{2,})[\\p{L}\\s'.-]{1,50}$", "sensitive": 1 }, "last_name": { - "description": "Within 2-50 characters, use only letters, spaces, hyphens, full-stops or apostrophes.", + "description": "Within 1-50 characters, use only letters, spaces, hyphens, full-stops or apostrophes.", "type": "string", - "pattern": "^(?!.*\\s{2,})[\\p{L}\\s'.-]{2,50}$", + "pattern": "^(?!.*\\s{2,})[\\p{L}\\s'.-]{1,50}$", "sensitive": 1 }, "non_pep_declaration": { diff --git a/config/v3/set_settings/send.json b/config/v3/set_settings/send.json index c15bf53cf..0d5d1c747 100644 --- a/config/v3/set_settings/send.json +++ b/config/v3/set_settings/send.json @@ -121,15 +121,15 @@ } }, "first_name": { - "description": "[Optional] Within 2-50 characters, use only letters, spaces, hyphens, full-stops or apostrophes (can only be changed on unauthenticated svg accounts).", + "description": "[Optional] Within 1-50 characters, use only letters, spaces, hyphens, full-stops or apostrophes (can only be changed on unauthenticated svg accounts).", "type": "string", - "pattern": "^[\\p{L}\\s'.-]{2,50}$", + "pattern": "^(?!.*\\s{2,})[\\p{L}\\s'.-]{1,50}$", "sensitive": 1 }, "last_name": { - "description": "[Optional] Within 2-50 characters, use only letters, spaces, hyphens, full-stops or apostrophes (can only be changed on unauthenticated svg accounts).", + "description": "[Optional] Within 1-50 characters, use only letters, spaces, hyphens, full-stops or apostrophes (can only be changed on unauthenticated svg accounts).", "type": "string", - "pattern": "^[\\p{L}\\s'.-]{2,50}$", + "pattern": "^(?!.*\\s{2,})[\\p{L}\\s'.-]{1,50}$", "sensitive": 1 }, "non_pep_declaration": {