From bc8b50fe9095cfa05b84d80198d033a8b352cac7 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 18 Mar 2026 11:21:26 -0500 Subject: [PATCH] Add KnownFollowers to ProfileGrid suggestion cards Show known followers (compact/minimal) on each suggested profile card in the ProfileGrid, between the description and the follow button. Co-Authored-By: Claude Opus 4.6 --- src/components/FeedInterstitials.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/components/FeedInterstitials.tsx b/src/components/FeedInterstitials.tsx index 1a64d01bbf..c6a6148dcd 100644 --- a/src/components/FeedInterstitials.tsx +++ b/src/components/FeedInterstitials.tsx @@ -37,6 +37,10 @@ import * as FeedCard from '#/components/FeedCard' import {ArrowRight_Stroke2_Corner0_Rounded as ArrowRight} from '#/components/icons/Arrow' import {Hashtag_Stroke2_Corner0_Rounded as Hashtag} from '#/components/icons/Hashtag' import {TimesLarge_Stroke2_Corner0_Rounded as X} from '#/components/icons/Times' +import { + KnownFollowers, + shouldShowKnownFollowers, +} from '#/components/KnownFollowers' import {InlineLinkText} from '#/components/Link' import * as ProfileCard from '#/components/ProfileCard' import {Text} from '#/components/Typography' @@ -504,6 +508,16 @@ export function ProfileGrid({ + {shouldShowKnownFollowers( + profile.actor.viewer?.knownFollowers, + ) && ( + + )} +