From a4f82b476838de64affbf95eccc97d02262d3b2a Mon Sep 17 00:00:00 2001 From: almeidx Date: Mon, 14 Sep 2026 14:36:19 +0100 Subject: [PATCH] fix(website): parsing of item name for title --- apps/website/src/util/parseDocsPathParams.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/website/src/util/parseDocsPathParams.ts b/apps/website/src/util/parseDocsPathParams.ts index 9f95ec4fb..0349a6a6f 100644 --- a/apps/website/src/util/parseDocsPathParams.ts +++ b/apps/website/src/util/parseDocsPathParams.ts @@ -9,7 +9,7 @@ export function parseDocsPathParams(item: string[] | undefined): { } const lastElement = item.at(-1); - const hasTypeMarker = lastElement?.includes('%3A'); + const hasTypeMarker = lastElement?.includes(':') || lastElement?.includes('%3A'); return { entryPoints: hasTypeMarker ? item.slice(0, -1) : lastElement?.length === 0 ? DEFAULT_ENTRY_POINT : item,