diff --git a/src/screens/List/ListHiddenScreen.tsx b/src/screens/List/ListHiddenScreen.tsx index a694cbb837..75bea46371 100644 --- a/src/screens/List/ListHiddenScreen.tsx +++ b/src/screens/List/ListHiddenScreen.tsx @@ -123,7 +123,11 @@ export function ListHiddenScreen({ /> - List has been hidden + {list.creator.viewer?.blocking || list.creator.viewer?.blockedBy ? ( + Creator has been blocked + ) : ( + List has been hidden + )} - - This list - created by{' '} - - {isOwner - ? _(msg`you`) - : sanitizeHandle(list.creator.handle, '@')} - {' '} - - contains possible violations of Bluesky's community guidelines - in its name or description. - + {list.creator.viewer?.blocking || list.creator.viewer?.blockedBy ? ( + + Either the creator of this list has blocked you or you have + blocked the creator. + + ) : ( + + This list - created by{' '} + + {isOwner + ? _(msg`you`) + : sanitizeHandle(list.creator.handle, '@')} + {' '} + - contains possible violations of Bluesky's community guidelines + in its name or description. + + )}