From 03eec20023ad868fc53ae8c70b8a4c54bbe8aa5f Mon Sep 17 00:00:00 2001 From: Teal Larson Date: Mon, 12 Jan 2026 11:55:30 -0500 Subject: [PATCH] fix object Object showing on tool basics page currently by leaving otu the * entry that does not have a title at its root --- app/_components/SubpageList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/_components/SubpageList.tsx b/app/_components/SubpageList.tsx index c40cb57d0..d1dd13804 100644 --- a/app/_components/SubpageList.tsx +++ b/app/_components/SubpageList.tsx @@ -6,7 +6,7 @@ interface SubpageListProps { } export function SubpageList({ basePath, meta }: SubpageListProps) { - const subpages = Object.entries(meta).filter(([key]) => key !== "index"); + const subpages = Object.entries(meta).filter(([key]) => key !== "index" && key !== "*"); return (