From 6c40efb3a38207157b0f0dcc9492fe9fb375d69b Mon Sep 17 00:00:00 2001 From: Hailey Date: Tue, 31 Dec 2024 11:24:50 -0800 Subject: change copy on list blocked (#7316) --- src/screens/List/ListHiddenScreen.tsx | 33 ++++++++++++++++++++++----------- 1 file changed, 22 insertions(+), 11 deletions(-) (limited to 'src/screens/List/ListHiddenScreen.tsx') diff --git a/src/screens/List/ListHiddenScreen.tsx b/src/screens/List/ListHiddenScreen.tsx index a694cbb83..75bea4637 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. + + )} -- cgit 1.4.1