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 304dfd1 commit 56d8f0eCopy full SHA for 56d8f0e
1 file changed
app/_components/subpage-list.tsx
@@ -6,7 +6,9 @@ type SubpageListProps = {
6
};
7
8
export function SubpageList({ basePath, meta }: SubpageListProps) {
9
- const subpages = Object.entries(meta).filter(([key]) => key !== "index");
+ const subpages = Object.entries(meta).filter(
10
+ ([key]) => key !== "index" && key !== "*"
11
+ );
12
13
return (
14
<ul className="x:ms-[1.5em] x:not-first:mt-[1.25em] x:list-disc x:[:is(ol,ul)_&]:my-[.75em]">
0 commit comments