Skip to content

Commit

Permalink
Fix fields displayed for customers in the Netherlands
Browse files Browse the repository at this point in the history
 Fix fields displayed for customers in the Netherlands
  • Loading branch information
kaio-donadelli authored Oct 11, 2023
2 parents 3a74ee2 + d5888a8 commit 03e23ef
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Fixed

- Fields displayed for Netherlands customers, in order to better reflect the usual experience for shoppers in that country.

## [4.22.4] - 2023-09-12

### Fixed
Expand Down
13 changes: 11 additions & 2 deletions react/country/NLD.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@ export default {
required: true,
size: 'xlarge',
},
{
name: 'number',
maxLength: 750,
label: 'number',
required: true,
size: 'mini',
autoComplete: 'nope',
},
{
name: 'complement',
maxLength: 750,
Expand All @@ -40,13 +48,14 @@ export default {
maxLength: 100,
label: 'city',
required: true,
size: 'large',
size: 'xlarge',
},
{
hidden: true,
name: 'state',
maxLength: 100,
label: 'department',
required: true,
required: false,
size: 'large',
},
{
Expand Down

0 comments on commit 03e23ef

Please sign in to comment.