Fix type error

This commit is contained in:
Eric Bailey
2026-01-14 12:51:40 -06:00
parent 3be51f5698
commit 2ee98140f7
@@ -39,6 +39,7 @@ export function DiscoverFeedLiveEventFeedsAndTrendingBanner() {
function Inner({feed}: {feed: LiveEventFeed}) { function Inner({feed}: {feed: LiveEventFeed}) {
const {_} = useLingui() const {_} = useLingui()
const optionsMenuControl = useDialogControl() const optionsMenuControl = useDialogControl()
const layout = feed.layouts.wide
return ( return (
<> <>
@@ -62,14 +63,14 @@ function Inner({feed}: {feed: LiveEventFeed}) {
a.inset_0, a.inset_0,
a.rounded_full, a.rounded_full,
{ {
backgroundColor: feed.images.wide.overlayColor, backgroundColor: layout.overlayColor,
opacity: hovered || pressed ? 0.8 : 0.6, opacity: hovered || pressed ? 0.8 : 0.6,
}, },
]} ]}
/> />
<EllipsisIcon <EllipsisIcon
size="sm" size="sm"
fill={feed.images.wide.textColor} fill={layout.textColor}
style={[a.z_20]} style={[a.z_20]}
/> />
</> </>