Skip to content

Commit 5037546

Browse files
committed
Merge branch 'bose/3542' into staging
2 parents b2e6533 + 692d71f commit 5037546

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

web/pageComponents/pageTemplates/HomePage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const HomePage = ({ data }: HomePageProps) => {
1515
const titleStyles = useSharedTitleStyles(data?.hero?.type, data?.content?.[0])
1616
const { breadcrumbs } = data
1717
const showSharedTitle =
18-
data.hero.type !== HeroTypes.DEFAULT && !data?.isCampaign && data.hero.type !== HeroTypes.BACKGROUND_IMAGE
18+
data?.hero?.type !== HeroTypes.DEFAULT && !data?.isCampaign && data.hero.type !== HeroTypes.BACKGROUND_IMAGE
1919

2020
return (
2121
<>

web/pageComponents/pageTemplates/TopicPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const TopicPage = ({ data }: TopicPageProps) => {
1515
const titleStyles = useSharedTitleStyles(data?.hero?.type, data?.content?.[0])
1616
const { breadcrumbs } = data
1717
const showSharedTitle =
18-
data.hero.type !== HeroTypes.DEFAULT && !data?.isCampaign && data.hero.type !== HeroTypes.BACKGROUND_IMAGE
18+
data?.hero?.type !== HeroTypes.DEFAULT && !data?.isCampaign && data.hero.type !== HeroTypes.BACKGROUND_IMAGE
1919
return (
2020
<>
2121
<Seo

0 commit comments

Comments
 (0)