We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ea94c1 commit 055d47fCopy full SHA for 055d47f
src/components/pageGrid.tsx
@@ -20,9 +20,9 @@ export function PageGrid({header, exclude}: Props) {
20
}
21
22
const children: DocNode[] = parentNode.frontmatter.next_steps?.length
23
- ? parentNode.frontmatter.next_steps
+ ? (parentNode.frontmatter.next_steps
24
.map(p => nodeForPath(rootNode, path.join(parentNode.path, p)))
25
- .filter(isNotNil) ?? []
+ .filter(isNotNil) ?? [])
26
: parentNode.children;
27
28
return (
0 commit comments