fix(frontend): incorrect URLs in stats page

This commit is contained in:
2026-03-03 18:36:46 +00:00
parent d11c5acb77
commit 531ddb0467
7 changed files with 98 additions and 34 deletions

View File

@@ -11,5 +11,9 @@ export const getDocumentTitle = (pathname: string) => {
return "Processing Dataset";
}
if (pathname.includes("stats")) {
return "Ethnography Analysis"
}
return STATIC_TITLES[pathname] ?? DEFAULT_TITLE;
};