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 612f4aa commit d33b1e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion formats.go
Original file line number Diff line number Diff line change
Expand Up @@ -1570,7 +1570,7 @@ var formats = map[string]Format{
},
"TR": {
Layout: "%1\n%2\n%3\n%P %L/%R",
Required: []Field{FieldLine1, FieldLocality, FieldPostalCode},
Required: []Field{FieldLine1, FieldLocality, FieldRegion, FieldPostalCode},
LocalityType: LocalityTypeDistrict,
PostalCodePattern: `\d{5}`,
Regions: NewRegionMap(
Expand Down

0 comments on commit d33b1e6

Please sign in to comment.