Skip to content

Commit ec13d9a

Browse files
Do not render subnav for interactive articles
1 parent 886f7ac commit ec13d9a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dotcom-rendering/src/layouts/FullPageInteractiveLayout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ const NavHeader = ({ article, NAV, format, renderAds }: HeaderProps) => {
177177
discussionApiUrl={article.config.discussionApiUrl}
178178
idApiUrl={article.config.idApiUrl}
179179
contributionsServiceUrl={article.contributionsServiceUrl}
180-
showSubNav={format.theme !== ArticleSpecial.Labs}
180+
showSubNav={false}
181181
showSlimNav={true}
182182
hasPageSkin={false}
183183
hasPageSkinContentSelfConstrain={false}

dotcom-rendering/src/layouts/InteractiveLayout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,8 +288,8 @@ export const InteractiveLayout = (props: WebProps | AppsProps) => {
288288
discussionApiUrl={article.config.discussionApiUrl}
289289
idApiUrl={article.config.idApiUrl}
290290
contributionsServiceUrl={contributionsServiceUrl}
291-
showSubNav={format.theme !== ArticleSpecial.Labs}
292291
showSlimNav={true}
292+
showSubNav={false}
293293
hasPageSkin={false}
294294
hasPageSkinContentSelfConstrain={false}
295295
pageId={article.pageId}

0 commit comments

Comments
 (0)