diff --git a/CHANGELOG.md b/CHANGELOG.md
index b479e3085..f263b9d03 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,11 @@
## Unreleased
+### Change
+
+- **Onboarding Service Provider**
+ - removed deprecated page onboardingServiceProvider and every related link [#1261](https://github.com/eclipse-tractusx/portal-frontend/pull/1261)
+
## 2.3.0-alpha.3
### Change
diff --git a/DEPENDENCIES b/DEPENDENCIES
index 7ee0c4eaf..fc6ad3cb2 100644
--- a/DEPENDENCIES
+++ b/DEPENDENCIES
@@ -217,7 +217,7 @@ npm/npmjs/-/https-proxy-agent/5.0.1, MIT, approved, clearlydefined
npm/npmjs/-/human-signals/2.1.0, Apache-2.0, approved, clearlydefined
npm/npmjs/-/husky/9.1.6, MIT, approved, clearlydefined
npm/npmjs/-/i18next-browser-languagedetector/7.2.1, MIT, approved, clearlydefined
-npm/npmjs/-/i18next/23.15.1, MIT, approved, clearlydefined
+npm/npmjs/-/i18next/23.15.1, MIT, approved, #16823
npm/npmjs/-/iconv-lite/0.6.3, MIT, approved, clearlydefined
npm/npmjs/-/identity-obj-proxy/3.0.0, MIT, approved, clearlydefined
npm/npmjs/-/ieee754/1.2.1, BSD-3-Clause, approved, clearlydefined
diff --git a/src/assets/locales/en/idp.json b/src/assets/locales/en/idp.json
index ee41681bb..0a05776f3 100644
--- a/src/assets/locales/en/idp.json
+++ b/src/assets/locales/en/idp.json
@@ -275,8 +275,6 @@
"status4": "active"
},
"osp": {
- "title": "Onboarding Serviceprovider",
- "desc": "{Description of the Onboarding Serviceprovider process}",
"steps": {
"one": {
"text": "done",
diff --git a/src/components/pages/OSPManagement/index.tsx b/src/components/pages/OSPManagement/index.tsx
deleted file mode 100644
index efb283137..000000000
--- a/src/components/pages/OSPManagement/index.tsx
+++ /dev/null
@@ -1,71 +0,0 @@
-/********************************************************************************
- * Copyright (c) 2023 BMW Group AG
- * Copyright (c) 2023 Contributors to the Eclipse Foundation
- *
- * See the NOTICE file(s) distributed with this work for additional
- * information regarding copyright ownership.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Apache License, Version 2.0 which is available at
- * https://www.apache.org/licenses/LICENSE-2.0.
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations
- * under the License.
- *
- * SPDX-License-Identifier: Apache-2.0
- ********************************************************************************/
-
-import AddCircleOutlineIcon from '@mui/icons-material/AddCircleOutline'
-import { OVERLAYS } from 'types/Constants'
-import { Button, Image, Typography } from '@catena-x/portal-shared-components'
-import { Trans, useTranslation } from 'react-i18next'
-import { useDispatch } from 'react-redux'
-import { show } from 'features/control/overlay'
-import './style.scss'
-import { getAssetBase } from 'services/EnvironmentService'
-import { IDPList } from '../IDPManagement/IDPList'
-
-export default function OSPManagement() {
- const { t } = useTranslation('idp')
- const dispatch = useDispatch()
-
- return (
-
-
-