···123123 />
124124 <View style={[a.gap_sm, a.align_center]}>
125125 <Text style={[a.font_bold, a.text_3xl]}>
126126- <Trans>List has been hidden</Trans>
126126+ {list.creator.viewer?.blocking || list.creator.viewer?.blockedBy ? (
127127+ <Trans>Creator has been blocked</Trans>
128128+ ) : (
129129+ <Trans>List has been hidden</Trans>
130130+ )}
127131 </Text>
128132 <Text
129133 style={[
···133137 t.atoms.text_contrast_high,
134138 {lineHeight: 1.4},
135139 ]}>
136136- <Trans>
137137- This list - created by{' '}
138138- <Text style={[a.text_md, !isOwner && a.font_bold]}>
139139- {isOwner
140140- ? _(msg`you`)
141141- : sanitizeHandle(list.creator.handle, '@')}
142142- </Text>{' '}
143143- - contains possible violations of Bluesky's community guidelines
144144- in its name or description.
145145- </Trans>
140140+ {list.creator.viewer?.blocking || list.creator.viewer?.blockedBy ? (
141141+ <Trans>
142142+ Either the creator of this list has blocked you or you have
143143+ blocked the creator.
144144+ </Trans>
145145+ ) : (
146146+ <Trans>
147147+ This list - created by{' '}
148148+ <Text style={[a.text_md, !isOwner && a.font_bold]}>
149149+ {isOwner
150150+ ? _(msg`you`)
151151+ : sanitizeHandle(list.creator.handle, '@')}
152152+ </Text>{' '}
153153+ - contains possible violations of Bluesky's community guidelines
154154+ in its name or description.
155155+ </Trans>
156156+ )}
146157 </Text>
147158 </View>
148159 </View>