diff --git a/core/i18n/locales/de.json b/core/i18n/locales/de.json
index 4cdd0a5a40677bf54f16efae48cf30c606f57ecc..3f9af8c82560a5ff4fd391356c5c83180d085645 100644
--- a/core/i18n/locales/de.json
+++ b/core/i18n/locales/de.json
@@ -1168,7 +1168,6 @@
   "spaces.invite.btn.invite": "Einladen",
   "spaces.invite.btn.send": "Einladung verschicken",
   "spaces.invite.connections.empty": "Du hast noch keine Verbindungen",
-  "spaces.invite.connections.empty.cta": "Erweitere dein Netzerk auf holi",
   "spaces.invite.connections.header": "Deine Verbindungen",
   "spaces.invite.connections.report": "Benutzer:in melden",
   "spaces.invite.decline.success": "Einladung abgelehnt",
@@ -1451,6 +1450,7 @@
   "user.interests.form.headline": "Beteilige dich an dem, was dir wichtig ist",
   "user.interests.form.subline": "Wir passen die Empfehlungen basierend auf deiner Auswahl an. Du kannst deine Themen jederzeit in deinen Profileinstellungen ändern.",
   "user.profile.connections.title.empty": "Benutzer:in hat noch keine Kontakte",
+  "user.profile.own.connections.title.empty": "Du hast noch keine Verbindungen",
   "user.profile.validation.avatar.invalid_image": "Die hochgeladene Datei ist entweder kein valides Bild oder die Datei ist beschädigt",
   "user.profile.validation.avatar.max_upload_size": "Die hochgeladene Datei ist größer als 10MB",
   "user.profile.validation.firstName.maxCharacters": "Vorname darf maximal {{value}} Zeichen lang sein",
diff --git a/core/i18n/locales/en.json b/core/i18n/locales/en.json
index b505fe4310bc1b8f09d619f3c4be7dc66a5f6320..76a94a543033e46d002731a0a1453d17e801e0ad 100644
--- a/core/i18n/locales/en.json
+++ b/core/i18n/locales/en.json
@@ -1167,7 +1167,6 @@
   "spaces.invite.btn.invite": "Invite",
   "spaces.invite.btn.send": "Send invite",
   "spaces.invite.connections.empty": "You don't have any connections yet",
-  "spaces.invite.connections.empty.cta": "Discover holi users",
   "spaces.invite.connections.header": "Your connections",
   "spaces.invite.connections.report": "Report user",
   "spaces.invite.decline.success": "Invitation declined",
@@ -1451,6 +1450,7 @@
   "user.interests.form.headline": "Get engaged in topics that matter to you",
   "user.interests.form.subline": "We'll customize recommendations based on your selection. You can change your topics any time in your profile settings.",
   "user.profile.connections.title.empty": "This user doesn't have any connections yet",
+  "user.profile.own.connections.title.empty": "You don't have any connections yet",
   "user.profile.validation.avatar.invalid_image": "The file you uploaded is not a valid image or the file is corrupt",
   "user.profile.validation.avatar.max_upload_size": "The file you uploaded is bigger than 10MB",
   "user.profile.validation.firstName.maxCharacters": "First name may be a maximum of {{value}} characters long",
diff --git a/core/screens/userprofile/components/OwnProfileView.tsx b/core/screens/userprofile/components/OwnProfileView.tsx
index 5137bf1e803a399c714486c6e073b67b2f5d282b..1b92198f257b64b4493ab6e85fedadf9b27bee83 100644
--- a/core/screens/userprofile/components/OwnProfileView.tsx
+++ b/core/screens/userprofile/components/OwnProfileView.tsx
@@ -151,12 +151,7 @@ const OwnProfileView = ({ user, toggleEditMode, activeTab, onTabChange }: PropsW
           {
             key: Tab.CONNECTIONS,
             tabTitle: t('profile.tabs.connections'),
-            content: () => (
-              <OwnConnectionsTab
-                emptyText={t('spaces.invite.connections.empty')}
-                emptyCallToAction={t('spaces.invite.connections.empty.cta')}
-              />
-            ),
+            content: () => <OwnConnectionsTab emptyText={t('user.profile.own.connections.title.empty')} />,
           },
         ]}
         keyExtractor={(item) => item.key}