Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: show muted/blocked status on list card (#2523)

authored by

Mary and committed by
GitHub
921b57d1 12a0ceee

+13 -5
+13 -5
src/view/com/lists/ListCard.tsx
··· 94 94 </Trans> 95 95 ))} 96 96 </Text> 97 - {!!list.viewer?.muted && ( 98 - <View style={s.flexRow}> 97 + <View style={s.flexRow}> 98 + {list.viewer?.muted ? ( 99 99 <View style={[s.mt5, pal.btn, styles.pill]}> 100 100 <Text type="xs" style={pal.text}> 101 - <Trans>Subscribed</Trans> 101 + <Trans>Muted</Trans> 102 102 </Text> 103 103 </View> 104 - </View> 105 - )} 104 + ) : null} 105 + 106 + {list.viewer?.blocked ? ( 107 + <View style={[s.mt5, pal.btn, styles.pill]}> 108 + <Text type="xs" style={pal.text}> 109 + <Trans>Blocked</Trans> 110 + </Text> 111 + </View> 112 + ) : null} 113 + </View> 106 114 </View> 107 115 {renderButton ? ( 108 116 <View style={styles.layoutButton}>{renderButton()}</View>