diff --git a/src/components/FeedCard.tsx b/src/components/FeedCard.tsx index ecf0a1b9..e0fc7ef5 100644 --- a/src/components/FeedCard.tsx +++ b/src/components/FeedCard.tsx @@ -233,7 +233,11 @@ export function Action({ purpose?: AppBskyGraphDefs.ListView['purpose'] }) { const {hasSession} = useSession() - if (!hasSession || purpose !== 'app.bsky.graph.defs#curatelist') return null + if ( + !hasSession || + (type === 'list' && purpose !== 'app.bsky.graph.defs#curatelist') + ) + return null return }