Skip to content

Commit 1cea1b7

Browse files
committed
Hide cause areas
1 parent ccba688 commit 1cea1b7

File tree

3 files changed

+22
-22
lines changed

3 files changed

+22
-22
lines changed

app/complete-profile/page.tsx

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -414,22 +414,22 @@ function RegisterComponent() {
414414
</p>
415415
</>
416416
},
417-
{
418-
id: 'causeAreas', title: 'Cause Areas', allowAdd: true,
419-
content: <>
420-
<p className="mt-2">
421-
When choosing your cause areas on a platform designed for deep, lasting connection, focus on the issues that
422-
you feel personally compelled to engage with—not just what’s socially approved or intellectually interesting.
423-
Good cause areas reveal what breaks your heart, what energizes your long-term thinking, or what you’d
424-
willingly struggle for even if no one noticed. Be honest about what genuinely matters to you: that might be
425-
existential risk reduction, prison abolition, mental health reform, animal welfare, epistemic integrity, or
426-
education equity. You don’t need to be an expert or activist to list a cause—just sincerely invested. The
427-
point isn’t to posture but to expose what kind of future you want to help shape, and to find others whose
428-
moral intuitions and sense of responsibility resonate with your own. That kind of alignment creates not just
429-
shared goals, but durable trust.
430-
</p>
431-
</>
432-
},
417+
// {
418+
// id: 'causeAreas', title: 'Cause Areas', allowAdd: true,
419+
// content: <>
420+
// <p className="mt-2">
421+
// When choosing your cause areas on a platform designed for deep, lasting connection, focus on the issues that
422+
// you feel personally compelled to engage with—not just what’s socially approved or intellectually interesting.
423+
// Good cause areas reveal what breaks your heart, what energizes your long-term thinking, or what you’d
424+
// willingly struggle for even if no one noticed. Be honest about what genuinely matters to you: that might be
425+
// existential risk reduction, prison abolition, mental health reform, animal welfare, epistemic integrity, or
426+
// education equity. You don’t need to be an expert or activist to list a cause—just sincerely invested. The
427+
// point isn’t to posture but to expose what kind of future you want to help shape, and to find others whose
428+
// moral intuitions and sense of responsibility resonate with your own. That kind of alignment creates not just
429+
// shared goals, but durable trust.
430+
// </p>
431+
// </>
432+
// },
433433
]
434434

435435
function getDropdown({id, title, allowAdd, content}: DropdownConfig) {
@@ -748,10 +748,10 @@ function RegisterComponent() {
748748
/>
749749
</div>
750750

751-
{getDropdown(dropdownConfig[0])}
752-
{getDropdown(dropdownConfig[1])}
753-
{getDropdown(dropdownConfig[2])}
754-
{getDropdown(dropdownConfig[3])}
751+
{dropdownConfig.map((v, i) => (
752+
<React.Fragment key={i}>{getDropdown(v)}</React.Fragment>
753+
))}
754+
755755

756756
<div>
757757
<label htmlFor="introversion" className={headingStyle}>

app/profiles/ProfileFilters.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const dropdownConfig: { id: DropdownKey, name: string }[] = [
3232
{id: "connections", name: "Type of Connection"},
3333
{id: "coreValues", name: "Values"},
3434
{id: "interests", name: "Interests"},
35-
{id: "causeAreas", name: "Cause Areas"},
35+
// {id: "causeAreas", name: "Cause Areas"},
3636
]
3737

3838
export const rangeConfig: { id: RangeKey, name: string, min: number, max: number }[] = [

lib/client/profile.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ export function Profile(url: string, header: any = null) {
123123
{profileAttribute: 'desiredConnections', attribute: 'connection', title: 'Type of Connection'},
124124
{profileAttribute: 'coreValues', attribute: 'value', title: 'Values'},
125125
{profileAttribute: 'intellectualInterests', attribute: 'interest', title: 'Interests'},
126-
{profileAttribute: 'causeAreas', attribute: 'causeArea', title: 'Cause Areas'},
126+
// {profileAttribute: 'causeAreas', attribute: 'causeArea', title: 'Cause Areas'},
127127
]
128128

129129
function getTags({profileAttribute, attribute, title}: Tags) {

0 commit comments

Comments
 (0)