diff --git a/src/components/feed/Feed.tsx b/src/components/feed/Feed.tsx index 35a4cea..6e61b66 100644 --- a/src/components/feed/Feed.tsx +++ b/src/components/feed/Feed.tsx @@ -105,7 +105,7 @@ export function Feed() { const filteredNotes = activeNotes.filter((event) => { if (mutedPubkeys.includes(event.pubkey)) return false; if (contentMatchesMutedKeyword(event.content)) return false; - if (tab === "global" && wotEnabled && wotSet.size > 0 && !wotSet.has(event.pubkey)) return false; + if (wotEnabled && wotSet.size > 0 && !wotSet.has(event.pubkey)) return false; const c = event.content.trim(); if (!c || c.startsWith("{") || c.startsWith("[")) return false; // Filter out notes that look like base64 blobs or relay protocol messages diff --git a/src/components/shared/SettingsView.tsx b/src/components/shared/SettingsView.tsx index 696f3d3..d6c4547 100644 --- a/src/components/shared/SettingsView.tsx +++ b/src/components/shared/SettingsView.tsx @@ -162,7 +162,8 @@ function WoTSection() { Web of Trust filter

- Only show global feed notes from people you follow or people they follow. + Hide notes, reactions, and zaps from outside your social graph + (people you follow + people they follow).