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() {
|
export function ExploreScreenLiveEventFeedsBanner() {
|
||||||
const t = useTheme()
|
const t = useTheme()
|
||||||
const events = useLiveEvents()
|
const events = useLiveEvents()
|
||||||
const feed = events.feeds.at(0)
|
return events.feeds.map(feed => (
|
||||||
if (!feed) return null
|
<View
|
||||||
return (
|
key={feed.id}
|
||||||
<View style={[a.p_lg, a.border_b, t.atoms.border_contrast_low]}>
|
style={[a.p_lg, a.border_b, t.atoms.border_contrast_low]}>
|
||||||
<LiveEventFeedCardWide feed={feed} metricContext="explore" />
|
<LiveEventFeedCardWide feed={feed} metricContext="explore" />
|
||||||
</View>
|
</View>
|
||||||
)
|
))
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user