Show multiple feeds on Explore for bsky team
This commit is contained in:
@@ -7,11 +7,11 @@ import {useLiveEvents} from '#/features/liveEvents/context'
|
||||
export function ExploreScreenLiveEventFeedsBanner() {
|
||||
const t = useTheme()
|
||||
const events = useLiveEvents()
|
||||
const feed = events.feeds.at(0)
|
||||
if (!feed) return null
|
||||
return (
|
||||
<View style={[a.p_lg, a.border_b, t.atoms.border_contrast_low]}>
|
||||
return events.feeds.map(feed => (
|
||||
<View
|
||||
key={feed.id}
|
||||
style={[a.p_lg, a.border_b, t.atoms.border_contrast_low]}>
|
||||
<LiveEventFeedCardWide feed={feed} metricContext="explore" />
|
||||
</View>
|
||||
)
|
||||
))
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user