From e1176cd8a879703477d12cf159fd5b3c208b19d7 Mon Sep 17 00:00:00 2001 From: davidpmccormick Date: Wed, 13 Nov 2024 14:45:48 +0000 Subject: [PATCH] Use uid instead of id to check if we're on a 'sectionLevelPage' --- content/webapp/pages/pages/[pageId].tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/webapp/pages/pages/[pageId].tsx b/content/webapp/pages/pages/[pageId].tsx index 8c9ca64656..8294b197b2 100644 --- a/content/webapp/pages/pages/[pageId].tsx +++ b/content/webapp/pages/pages/[pageId].tsx @@ -257,7 +257,7 @@ export const Page: FunctionComponent = ({ ) : undefined; - const sectionLevelPage = sectionLevelPages.includes(page.id); + const sectionLevelPage = sectionLevelPages.includes(page.uid); function getBreadcrumbText(siteSection: string): string { return isLanding