Skip to content

Commit

Permalink
Merge pull request #52987 from FitseTLT/fix-uk-zip-code-bug
Browse files Browse the repository at this point in the history
Fix - Android - Profile - Zip code field is auto populated with invalid format when adding address
  • Loading branch information
mjasikowski authored Nov 26, 2024
2 parents 2d5479e + 33aae93 commit 0135d4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/CONST.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3815,8 +3815,8 @@ const CONST = {
},
GA: {},
GB: {
regex: /^[A-Z]{1,2}[0-9R][0-9A-Z]?\s*[0-9][A-Z-CIKMOV]{2}$/,
samples: 'LA102UX, BL2F8FX, BD1S9LU, WR4G 6LH',
regex: /^[A-Z]{1,2}[0-9R][0-9A-Z]?\s*([0-9][ABD-HJLNP-UW-Z]{2})?$/,
samples: 'LA102UX, BL2F8FX, BD1S9LU, WR4G 6LH, W1U',
},
GD: {},
GE: {
Expand Down

0 comments on commit 0135d4e

Please sign in to comment.