fix: sometimes the page doesn't have children (#19919)

This commit is contained in:
Mike Surowiec 2021-06-14 18:06:58 -07:00 коммит произвёл GitHub
Родитель 572a05c123
Коммит 6172262be7
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -77,7 +77,7 @@ export const useProductLandingContext = (): ProductLandingContextT => {
export const getProductLandingContextFromRequest = (req: any): ProductLandingContextT => {
const productTree = req.context.currentProductTree
const page = req.context.page
const hasGuidesPage = page.children.includes('/guides')
const hasGuidesPage = (page.children || []).includes('/guides')
return {
...pick(page, [
'title',