about summary refs log tree commit diff
path: root/src/components/StarterPack/Main
diff options
context:
space:
mode:
authorHailey <me@haileyok.com>2024-06-24 17:07:29 -0700
committerGitHub <noreply@github.com>2024-06-24 17:07:29 -0700
commitdd5198f317fb722f348560f0b0dbe805553ae83b (patch)
tree08d27593e9dcb4431c40a609e113daff276ea5e0 /src/components/StarterPack/Main
parent340c2c5eaf4666bd064f69d3520e7bc2b6cfa8c2 (diff)
downloadvoidsky-dd5198f317fb722f348560f0b0dbe805553ae83b.tar.zst
explicitly filter out labelers (#4629)
Diffstat (limited to 'src/components/StarterPack/Main')
-rw-r--r--src/components/StarterPack/Main/ProfilesList.tsx1
1 files changed, 1 insertions, 0 deletions
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<SectionRef, ProfilesListProps>(
     // 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