fix(organization): align date formats and fix address field naming

- Fix date format mismatch between Miscellaneous and Organization constants
- Fix default date format casing ('DD MMM yyyy' -> 'DD MMM YYYY')
- Rename address fields from address_1/address_2 to address1/address2

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Ahmed Bouhuolia
2026-02-24 22:42:29 +02:00
parent 29decf9c5a
commit f35e85c3d2
3 changed files with 12 additions and 15 deletions

View File

@@ -12,6 +12,6 @@ export const transformBuildDto = (
): BuildOrganizationDto => {
return {
...buildDTO,
dateFormat: defaultTo(buildDTO.dateFormat, 'DD MMM yyyy'),
dateFormat: defaultTo(buildDTO.dateFormat, 'DD MMM YYYY'),
};
};