From 481c5c906dbd471550990aea1827f0a92e70f6fd Mon Sep 17 00:00:00 2001 From: Jordan Gerada <138688996+JordanGerada3@users.noreply.github.com> Date: Wed, 16 Oct 2024 16:16:36 +0200 Subject: [PATCH] fix: replace OSP callback hardcode with variable (#1201) --- CHANGELOG.md | 3 +++ .../OnboardingServiceProvider/OnboardingServiceProvider.tsx | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6726b0339..61a75f33f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -52,6 +52,9 @@ - **Connector Management** - fixed customer link selection and fixed resetting values [#1119](https://github.com/eclipse-tractusx/portal-frontend/pull/1119) - **Technical User Management** + - fixed error message scenario post technical user deletion action +- **OSP Managament** + - fixed hardcoded OSP callback url [#1201](https://github.com/eclipse-tractusx/portal-frontend/pull/1201) - fixed error message scenario post technical user deletion action [#1164](https://github.com/eclipse-tractusx/portal-frontend/pull/1164) - **Company Subscriptions** - fixed incorrect data display in service company subscriptions [#1191](https://github.com/eclipse-tractusx/portal-frontend/pull/1191) diff --git a/src/components/pages/OnboardingServiceProvider/OnboardingServiceProvider.tsx b/src/components/pages/OnboardingServiceProvider/OnboardingServiceProvider.tsx index 507fb1014..5545c3f36 100644 --- a/src/components/pages/OnboardingServiceProvider/OnboardingServiceProvider.tsx +++ b/src/components/pages/OnboardingServiceProvider/OnboardingServiceProvider.tsx @@ -286,7 +286,7 @@ const OnboardingServiceProvider = () => { {t('content.onboardingServiceProvider.subDesc1')} - {t('content.onboardingServiceProvider.subDesc2')} + {callbackData?.callbackUrl ?? data?.callbackUrl}