From 8593d902097db7d738855819b57539a2f407ed54 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Mon, 4 Aug 2025 19:30:41 +0200 Subject: [PATCH] Remove core --- app/complete-profile/page.tsx | 4 ++-- app/profiles/ProfileFilters.tsx | 4 ++-- lib/client/profile.tsx | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app/complete-profile/page.tsx b/app/complete-profile/page.tsx index 7b33cce8..59daf4fd 100644 --- a/app/complete-profile/page.tsx +++ b/app/complete-profile/page.tsx @@ -384,7 +384,7 @@ function RegisterComponent() { content: null }, { - id: 'coreValues', title: 'Core Values', allowAdd: true, + id: 'coreValues', title: 'Values', allowAdd: true, content: <>

When defining your core values on a platform meant for forming deep, lasting bonds, focus on what governs your @@ -400,7 +400,7 @@ function RegisterComponent() { }, { - id: 'interests', title: 'Core Interests', allowAdd: true, + id: 'interests', title: 'Interests', allowAdd: true, content: <>

When selecting your core interests on a platform designed to foster deep, lasting diff --git a/app/profiles/ProfileFilters.tsx b/app/profiles/ProfileFilters.tsx index 2cb84f3c..988c9699 100644 --- a/app/profiles/ProfileFilters.tsx +++ b/app/profiles/ProfileFilters.tsx @@ -30,8 +30,8 @@ interface FilterProps { export const dropdownConfig: { id: DropdownKey, name: string }[] = [ {id: "connections", name: "Type of Connection"}, - {id: "coreValues", name: "Core Values"}, - {id: "interests", name: "Core Interests"}, + {id: "coreValues", name: "Values"}, + {id: "interests", name: "Interests"}, {id: "causeAreas", name: "Cause Areas"}, ] diff --git a/lib/client/profile.tsx b/lib/client/profile.tsx index b35da475..3b4e2083 100644 --- a/lib/client/profile.tsx +++ b/lib/client/profile.tsx @@ -121,8 +121,8 @@ export function Profile(url: string, header: any = null) { const tagsConfig: Tags[] = [ {profileAttribute: 'desiredConnections', attribute: 'connection', title: 'Type of Connection'}, - {profileAttribute: 'coreValues', attribute: 'value', title: 'Core Values'}, - {profileAttribute: 'intellectualInterests', attribute: 'interest', title: 'Core Interests'}, + {profileAttribute: 'coreValues', attribute: 'value', title: 'Values'}, + {profileAttribute: 'intellectualInterests', attribute: 'interest', title: 'Interests'}, {profileAttribute: 'causeAreas', attribute: 'causeArea', title: 'Cause Areas'}, ]