Remove core

This commit is contained in:
MartinBraquet
2025-08-04 19:30:41 +02:00
parent df441b7236
commit 8593d90209
3 changed files with 6 additions and 6 deletions

View File

@@ -384,7 +384,7 @@ function RegisterComponent() {
content: null
},
{
id: 'coreValues', title: 'Core Values', allowAdd: true,
id: 'coreValues', title: 'Values', allowAdd: true,
content: <>
<p className="mt-2">
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: <>
<p className="mt-2">
When selecting your core interests on a platform designed to foster deep, lasting

View File

@@ -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"},
]

View File

@@ -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'},
]