From 5f22bbf79ba4fd09fc833e95a192e2b41c7a3b4f Mon Sep 17 00:00:00 2001 From: Mary Kate Fain Date: Sat, 7 Mar 2026 18:44:58 -0600 Subject: [PATCH] Revert community conditional, rename Feed Tabs to Home Feed Tabs - Undo conditional rendering of community management section - Rename 'Feed Tabs' section header to 'Home Feed Tabs' --- src/components/ContentSettings.tsx | 120 ++++++++++++++--------------- 1 file changed, 59 insertions(+), 61 deletions(-) diff --git a/src/components/ContentSettings.tsx b/src/components/ContentSettings.tsx index 08ae620b..f43c4257 100644 --- a/src/components/ContentSettings.tsx +++ b/src/components/ContentSettings.tsx @@ -38,7 +38,7 @@ export function ContentSettings() { {/* Feed Tabs Section */}
-

Feed Tabs

+

Home Feed Tabs

@@ -436,71 +436,69 @@ function FeedTabsSection() {
- {showCommunityFeed && ( -
+
- {/* Community Management */} -
-
-
- - -
-

- Set a community domain. We'll download the NIP-05 user list to show posts only from verified members. -

+ {/* Community Management */} +
+
+
+ +
+

+ Set a community domain. We'll download the NIP-05 user list to show posts only from verified members. +

+
- {!community ? ( -
- setCommunityDomain(e.target.value)} - onKeyDown={(e) => { - if (e.key === 'Enter') { - handleDownloadCommunity(); - } - }} - className="h-9" - disabled={isDownloading} - /> - -
- ) : ( -
-
-
-

{community.label}

-

- {community.domain} • {community.userCount} {community.userCount === 1 ? 'user' : 'users'} -

-
+ {!community ? ( +
+ setCommunityDomain(e.target.value)} + onKeyDown={(e) => { + if (e.key === 'Enter') { + handleDownloadCommunity(); + } + }} + className="h-9" + disabled={isDownloading} + /> + +
+ ) : ( +
+
+
+

{community.label}

+

+ {community.domain} • {community.userCount} {community.userCount === 1 ? 'user' : 'users'} +

-
- )} -
-
- )} + +
+ )} +
+
{/* Saved Feeds */}