Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/malj/2042' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
padms committed Jan 17, 2024
2 parents 8031726 + f0c4d3a commit bd32024
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 bd32024

Please sign in to comment.