Merge branch 'dillon/90-e-invoice-e' into vapor/development

This commit is contained in:
Dillon Ngo
2025-06-28 16:10:00 +08:00
2 changed files with 4 additions and 4 deletions
@@ -219,7 +219,7 @@
? {
required,
alphaNum,
minLength: minLength(11),
minLength: minLength(10), //was 11
maxLength: maxLength(13)
}
: {}),
@@ -228,7 +228,7 @@
required,
alphaNum,
minLength: minLength(10),
maxLength: maxLength(12)
maxLength: maxLength(13) //was 12
}
: {})
},
@@ -152,7 +152,7 @@
? {
required,
alphaNum,
minLength: minLength(11),
minLength: minLength(10), //was 11
maxLength: maxLength(13)
}
: {}),
@@ -161,7 +161,7 @@
required,
alphaNum,
minLength: minLength(10),
maxLength: maxLength(12)
maxLength: maxLength(13) //was 12
}
: {})
}