Skip to content

Commit

Permalink
Add dropdown to region setting (#2044)
Browse files Browse the repository at this point in the history
  • Loading branch information
maryamsharif authored Jun 4, 2024
1 parent dbec70c commit 7f24d61
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,12 @@ const destination: AudienceDestinationDefinition<Settings, AudienceSettings> = {
label: 'Region',
description:
'The geographical region of the CRM data segment based on the origin of PII. Can be US (United States and Canada), EU (European Union and the UK), or APAC (Asia-Pacific)',
required: true
required: true,
choices: [
{ label: 'US', value: 'US' },
{ label: 'EU', value: 'EU' },
{ label: 'APAC', value: 'APAC' }
]
}
},
audienceConfig: {
Expand Down

0 comments on commit 7f24d61

Please sign in to comment.