Skip to content

Commit

Permalink
fix: add missing short name to form
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanGerada3 committed Nov 14, 2024
1 parent 546b881 commit be62df9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/assets/locales/de/registration.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"companyHeading": "Firmendetails",
"companyMessage": "Unten finden Sie die Registrierungsdaten Ihres Unternehmens, die Ihnen von Ihrem Onboarding-Anbieter mitgeteilt wurden. Bitte überprüfen Sie die Details und fahren Sie mit der Auswahl der Unternehmensrolle unten fort, bevor Sie Ihre Registrierung absenden.",
"companyName": "Name der Firma",
"legalName": "Gesetzlicher Name (kurz)",
"bmw": "BMW AG",
"street": "Hausnummer",
"zip": "Postleitzahl",
Expand Down
1 change: 1 addition & 0 deletions src/assets/locales/en/registration.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"companyHeading": "Company Details",
"companyMessage": "Below you can find your company registration details shared by your onboarding provider. Please review the details and proceed to the Company Role selection below before submitting your registration.",
"companyName": "Company Name",
"legalName": "Legal Name (short)",
"bmw": "BMW AG",
"street": "Street & Number",
"zip": "ZIP",
Expand Down
1 change: 1 addition & 0 deletions src/components/pages/OSPConsent/CompanyDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,7 @@ export const CompanyDetails = ({
const tableData: TableType = {
head: [t('osp.companyName'), companyDetails?.name ?? ''],
body: [
[t('osp.legalName'), companyDetails?.shortName ?? ''],
[
t('osp.street'),
`${companyDetails?.streetName ?? ''} ${companyDetails?.streetNumber ?? ''}`,
Expand Down

0 comments on commit be62df9

Please sign in to comment.