Skip to content

Commit

Permalink
Make the region field required in Turkey.
Browse files Browse the repository at this point in the history
Originally seen in google/libaddressinput#211.

In general, if a country has a predefined list of regions it doesn't feel risky to require one to be selected.
  • Loading branch information
bojanz committed Mar 3, 2023
1 parent 8f1d2d6 commit 242aa10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AddressFormat/AddressFormatRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -1379,7 +1379,7 @@ protected function getDefinitions(): array
'TR' => [
'format' => "%givenName %familyName\n%organization\n%addressLine1\n%addressLine2\n%postalCode %locality/%administrativeArea",
'required_fields' => [
'addressLine1', 'locality', 'postalCode',
'addressLine1', 'locality', 'administrativeArea', 'postalCode',
],
'locality_type' => 'district',
'postal_code_pattern' => '\d{5}',
Expand Down

0 comments on commit 242aa10

Please sign in to comment.