diff options
author | Hailey <me@haileyok.com> | 2024-06-24 17:07:29 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-24 17:07:29 -0700 |
commit | dd5198f317fb722f348560f0b0dbe805553ae83b (patch) | |
tree | 08d27593e9dcb4431c40a609e113daff276ea5e0 /src/components | |
parent | 340c2c5eaf4666bd064f69d3520e7bc2b6cfa8c2 (diff) | |
download | voidsky-dd5198f317fb722f348560f0b0dbe805553ae83b.tar.zst |
explicitly filter out labelers (#4629)
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/StarterPack/Main/ProfilesList.tsx | 1 |
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 |