Skip to content

Commit

Permalink
Merge pull request #592 from vtex/fix/SAU-rules
Browse files Browse the repository at this point in the history
fix validations for SAU
  • Loading branch information
lpolon authored Jul 2, 2024
2 parents 8a268be + 7ed49fb commit 1122937
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions react/country/SAU.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,12 @@ const rules: PostalCodeRules = {
size: 'medium',
},
{
hidden: true,
name: 'postalCode',
maxLength: 50,
maxLength: 5,
label: 'postalCode',
required: true,
mask: '99999',
regex: '^\\d{5}$',
size: 'small',
autoComplete: 'nope',
postalCodeAPI: false,
Expand Down

0 comments on commit 1122937

Please sign in to comment.