Hide cause areas

This commit is contained in:
MartinBraquet
2025-08-04 23:09:26 +02:00
parent ccba688ec4
commit 1cea1b7bcf
3 changed files with 22 additions and 22 deletions

View File

@@ -414,22 +414,22 @@ function RegisterComponent() {
</p>
</>
},
{
id: 'causeAreas', title: 'Cause Areas', allowAdd: true,
content: <>
<p className="mt-2">
When choosing your cause areas on a platform designed for deep, lasting connection, focus on the issues that
you feel personally compelled to engage withnot just whats socially approved or intellectually interesting.
Good cause areas reveal what breaks your heart, what energizes your long-term thinking, or what youd
willingly struggle for even if no one noticed. Be honest about what genuinely matters to you: that might be
existential risk reduction, prison abolition, mental health reform, animal welfare, epistemic integrity, or
education equity. You dont need to be an expert or activist to list a causejust sincerely invested. The
point isnt to posture but to expose what kind of future you want to help shape, and to find others whose
moral intuitions and sense of responsibility resonate with your own. That kind of alignment creates not just
shared goals, but durable trust.
</p>
</>
},
// {
// id: 'causeAreas', title: 'Cause Areas', allowAdd: true,
// content: <>
// <p className="mt-2">
// When choosing your cause areas on a platform designed for deep, lasting connection, focus on the issues that
// you feel personally compelled to engage with—not just whats socially approved or intellectually interesting.
// Good cause areas reveal what breaks your heart, what energizes your long-term thinking, or what youd
// willingly struggle for even if no one noticed. Be honest about what genuinely matters to you: that might be
// existential risk reduction, prison abolition, mental health reform, animal welfare, epistemic integrity, or
// education equity. You dont need to be an expert or activist to list a cause—just sincerely invested. The
// point isnt to posture but to expose what kind of future you want to help shape, and to find others whose
// moral intuitions and sense of responsibility resonate with your own. That kind of alignment creates not just
// shared goals, but durable trust.
// </p>
// </>
// },
]
function getDropdown({id, title, allowAdd, content}: DropdownConfig) {
@@ -748,10 +748,10 @@ function RegisterComponent() {
/>
</div>
{getDropdown(dropdownConfig[0])}
{getDropdown(dropdownConfig[1])}
{getDropdown(dropdownConfig[2])}
{getDropdown(dropdownConfig[3])}
{dropdownConfig.map((v, i) => (
<React.Fragment key={i}>{getDropdown(v)}</React.Fragment>
))}
<div>
<label htmlFor="introversion" className={headingStyle}>

View File

@@ -32,7 +32,7 @@ export const dropdownConfig: { id: DropdownKey, name: string }[] = [
{id: "connections", name: "Type of Connection"},
{id: "coreValues", name: "Values"},
{id: "interests", name: "Interests"},
{id: "causeAreas", name: "Cause Areas"},
// {id: "causeAreas", name: "Cause Areas"},
]
export const rangeConfig: { id: RangeKey, name: string, min: number, max: number }[] = [

View File

@@ -123,7 +123,7 @@ export function Profile(url: string, header: any = null) {
{profileAttribute: 'desiredConnections', attribute: 'connection', title: 'Type of Connection'},
{profileAttribute: 'coreValues', attribute: 'value', title: 'Values'},
{profileAttribute: 'intellectualInterests', attribute: 'interest', title: 'Interests'},
{profileAttribute: 'causeAreas', attribute: 'causeArea', title: 'Cause Areas'},
// {profileAttribute: 'causeAreas', attribute: 'causeArea', title: 'Cause Areas'},
]
function getTags({profileAttribute, attribute, title}: Tags) {