From 1cea1b7bcf2c88e73777339bbf240ddb3bda11c5 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Mon, 4 Aug 2025 23:09:26 +0200 Subject: [PATCH] Hide cause areas --- app/complete-profile/page.tsx | 40 ++++++++++++++++----------------- app/profiles/ProfileFilters.tsx | 2 +- lib/client/profile.tsx | 2 +- 3 files changed, 22 insertions(+), 22 deletions(-) diff --git a/app/complete-profile/page.tsx b/app/complete-profile/page.tsx index 473c05c3..f4ea33cd 100644 --- a/app/complete-profile/page.tsx +++ b/app/complete-profile/page.tsx @@ -414,22 +414,22 @@ function RegisterComponent() {

}, - { - id: 'causeAreas', title: 'Cause Areas', allowAdd: true, - content: <> -

- 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 what’s socially approved or intellectually interesting. - Good cause areas reveal what breaks your heart, what energizes your long-term thinking, or what you’d - 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 don’t need to be an expert or activist to list a cause—just sincerely invested. The - point isn’t 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. -

- - }, + // { + // id: 'causeAreas', title: 'Cause Areas', allowAdd: true, + // content: <> + //

+ // 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 what’s socially approved or intellectually interesting. + // Good cause areas reveal what breaks your heart, what energizes your long-term thinking, or what you’d + // 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 don’t need to be an expert or activist to list a cause—just sincerely invested. The + // point isn’t 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. + //

+ // + // }, ] function getDropdown({id, title, allowAdd, content}: DropdownConfig) { @@ -748,10 +748,10 @@ function RegisterComponent() { /> - {getDropdown(dropdownConfig[0])} - {getDropdown(dropdownConfig[1])} - {getDropdown(dropdownConfig[2])} - {getDropdown(dropdownConfig[3])} + {dropdownConfig.map((v, i) => ( + {getDropdown(v)} + ))} +