Skip to content

Commit

Permalink
Merge branch 'malj/2042' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
millianapia committed Jan 15, 2024
2 parents db4f522 + f0c4d3a commit 096e988
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,20 +103,20 @@ const MultiplePromotions = ({
case 'news':
case 'localNews':
return (
<StyledBackground>
<StyledBackground key={data.id}>
<StyledNewsCard data={data as CardData} key={data.id} />
</StyledBackground>
)
case 'topics':
case 'magazine':
return (
<StyledBackground>
<StyledBackground key={data.id}>
<StyledTopicPageCard data={data as CardData} key={data.id} />
</StyledBackground>
)
case 'people':
return (
<StyledBackground>
<StyledBackground key={data.id}>
<StyledPeopleCard data={data as PeopleCardData} hasSectionTitle={hasSectionTitle} key={data.id} />
</StyledBackground>
)
Expand Down

0 comments on commit 096e988

Please sign in to comment.