change copy on list blocked (#7316)
This commit is contained in:
@@ -123,7 +123,11 @@ export function ListHiddenScreen({
|
|||||||
/>
|
/>
|
||||||
<View style={[a.gap_sm, a.align_center]}>
|
<View style={[a.gap_sm, a.align_center]}>
|
||||||
<Text style={[a.font_bold, a.text_3xl]}>
|
<Text style={[a.font_bold, a.text_3xl]}>
|
||||||
|
{list.creator.viewer?.blocking || list.creator.viewer?.blockedBy ? (
|
||||||
|
<Trans>Creator has been blocked</Trans>
|
||||||
|
) : (
|
||||||
<Trans>List has been hidden</Trans>
|
<Trans>List has been hidden</Trans>
|
||||||
|
)}
|
||||||
</Text>
|
</Text>
|
||||||
<Text
|
<Text
|
||||||
style={[
|
style={[
|
||||||
@@ -133,6 +137,12 @@ export function ListHiddenScreen({
|
|||||||
t.atoms.text_contrast_high,
|
t.atoms.text_contrast_high,
|
||||||
{lineHeight: 1.4},
|
{lineHeight: 1.4},
|
||||||
]}>
|
]}>
|
||||||
|
{list.creator.viewer?.blocking || list.creator.viewer?.blockedBy ? (
|
||||||
|
<Trans>
|
||||||
|
Either the creator of this list has blocked you or you have
|
||||||
|
blocked the creator.
|
||||||
|
</Trans>
|
||||||
|
) : (
|
||||||
<Trans>
|
<Trans>
|
||||||
This list - created by{' '}
|
This list - created by{' '}
|
||||||
<Text style={[a.text_md, !isOwner && a.font_bold]}>
|
<Text style={[a.text_md, !isOwner && a.font_bold]}>
|
||||||
@@ -143,6 +153,7 @@ export function ListHiddenScreen({
|
|||||||
- contains possible violations of Bluesky's community guidelines
|
- contains possible violations of Bluesky's community guidelines
|
||||||
in its name or description.
|
in its name or description.
|
||||||
</Trans>
|
</Trans>
|
||||||
|
)}
|
||||||
</Text>
|
</Text>
|
||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
|
|||||||
Reference in New Issue
Block a user