diff --git a/CHANGELOG.md b/CHANGELOG.md index f2d561eed..0a308bc24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -45,6 +45,8 @@ - Fixed 'activeTab' conditions to load data for Tab-2(Registration Process) [#1050](https://github.com/eclipse-tractusx/portal-frontend/pull/1050) - **App Release Process**: - Fixed role upload does not work using Firefox [#1003](https://github.com/eclipse-tractusx/portal-frontend/pull/1003) +- **OSP Consent form** + - Display invited company name in OSP consent form (Previously hard coded with 'BMW') [#1083](https://github.com/eclipse-tractusx/portal-frontend/pull/1083) ## 2.2.0-RC2 diff --git a/src/components/pages/OSPConsent/CompanyDetails.tsx b/src/components/pages/OSPConsent/CompanyDetails.tsx index c5348b7cd..4987cd026 100644 --- a/src/components/pages/OSPConsent/CompanyDetails.tsx +++ b/src/components/pages/OSPConsent/CompanyDetails.tsx @@ -207,7 +207,7 @@ export const CompanyDetails = ({ } const tableData: TableType = { - head: [t('osp.companyName'), t('osp.bmw')], + head: [t('osp.companyName'), companyDetails?.name ?? ''], body: [ [t('osp.street'), companyDetails?.streetName ?? ''], [t('osp.zip'), companyDetails?.zipCode ?? ''],