Skip to content

Commit

Permalink
Merge pull request #9181 from ForumMagnum/temporary-disable-people-di…
Browse files Browse the repository at this point in the history
…rectory

Temporarily hide links to the people directory
  • Loading branch information
oetherington committed Apr 25, 2024
2 parents 13a5544 + 0e833c2 commit 7df275f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,7 @@ export const menuTabs: ForumOptions<Array<MenuTab>> = {
${taggingNamePluralSetting.get()} in EA and collects posts tagged with those ${taggingNamePluralSetting.get()}.`,
showOnMobileStandalone: true,
showOnCompressed: true,
/*
}, {
id: 'peopleDirectory',
title: 'People directory',
Expand All @@ -311,6 +312,7 @@ export const menuTabs: ForumOptions<Array<MenuTab>> = {
flag: "beta",
desktopOnly: true,
betaOnly: true,
*/
}, {
id: 'takeAction',
title: 'Take action',
Expand Down
2 changes: 1 addition & 1 deletion packages/lesswrong/lib/betas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const userHasEAHomeRHS = isEAForum ? shippedFeature : disabled;
export const visitorGetsDynamicFrontpage = isLW ? shippedFeature : disabled;

export const userHasPeopleDirectory = (user: UsersCurrent|DbUser|null) =>
isEAForum && !!user?.beta;
false;// isEAForum && !!user?.beta;

//defining as Hook so as to combine with ABTest
export const useRecombeeFrontpage = (currentUser: UsersCurrent|DbUser|null) => {
Expand Down

0 comments on commit 7df275f

Please sign in to comment.