Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Add back pin action for feed cards (#4643)

authored by

Eric Bailey and committed by
GitHub
dd2e1735 7c5ff79c

+5 -1
+5 -1
src/components/FeedCard.tsx
··· 233 233 purpose?: AppBskyGraphDefs.ListView['purpose'] 234 234 }) { 235 235 const {hasSession} = useSession() 236 - if (!hasSession || purpose !== 'app.bsky.graph.defs#curatelist') return null 236 + if ( 237 + !hasSession || 238 + (type === 'list' && purpose !== 'app.bsky.graph.defs#curatelist') 239 + ) 240 + return null 237 241 return <ActionInner uri={uri} pin={pin} type={type} /> 238 242 } 239 243