From dd5198f317fb722f348560f0b0dbe805553ae83b Mon Sep 17 00:00:00 2001 From: Hailey Date: Mon, 24 Jun 2024 17:07:29 -0700 Subject: explicitly filter out labelers (#4629) --- src/components/StarterPack/Main/ProfilesList.tsx | 1 + 1 file changed, 1 insertion(+) (limited to 'src/components/StarterPack/Main/ProfilesList.tsx') diff --git a/src/components/StarterPack/Main/ProfilesList.tsx b/src/components/StarterPack/Main/ProfilesList.tsx index 72d35fe2b..7691e7222 100644 --- a/src/components/StarterPack/Main/ProfilesList.tsx +++ b/src/components/StarterPack/Main/ProfilesList.tsx @@ -47,6 +47,7 @@ export const ProfilesList = React.forwardRef( // The server returns these sorted by descending creation date, so we want to invert const profiles = data?.pages .flatMap(p => p.items.map(i => i.subject)) + .filter(p => !p.associated?.labeler) .reverse() const isOwn = new AtUri(listUri).host === currentAccount?.did -- cgit 1.4.1