Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

:lipstick: Hide Add to List option on own profile (#1068)

authored by

Foysal Ahamed and committed by
GitHub
8e9b8b6b 49356700

+6 -5
+6 -5
src/view/com/profile/ProfileHeader.tsx
··· 261 261 label: 'Share', 262 262 onPress: onPressShare, 263 263 }, 264 - { 264 + ] 265 + if (!isMe) { 266 + items.push({sep: true}) 267 + // Only add "Add to Lists" on other user's profiles, doesn't make sense to mute my own self! 268 + items.push({ 265 269 testID: 'profileHeaderDropdownListAddRemoveBtn', 266 270 label: 'Add to Lists', 267 271 onPress: onPressAddRemoveLists, 268 - }, 269 - ] 270 - if (!isMe) { 271 - items.push({sep: true}) 272 + }) 272 273 if (!view.viewer.blocking) { 273 274 items.push({ 274 275 testID: 'profileHeaderDropdownMuteBtn',