Skip to content

Commit e49d73e

Browse files
authored
fix casing missed in PR review (#57853)
1 parent 3ef8879 commit e49d73e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/frame/middleware/context/generic-toc.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import findPageInSiteTree from '@/frame/lib/find-page-in-site-tree'
66
function isNewLandingPage(currentLayoutName: string): boolean {
77
return (
88
currentLayoutName === 'category-landing' ||
9-
currentLayoutName === 'bespoke_landing' ||
10-
currentLayoutName === 'discovery_landing' ||
11-
currentLayoutName === 'journey_landing'
9+
currentLayoutName === 'bespoke-landing' ||
10+
currentLayoutName === 'discovery-landing' ||
11+
currentLayoutName === 'journey-landing'
1212
)
1313
}
1414

0 commit comments

Comments
 (0)