From 403bc446f338bebf0faaae3a8938e5665a8635a7 Mon Sep 17 00:00:00 2001 From: Steven Le Date: Fri, 7 Jun 2024 22:00:19 -0700 Subject: [PATCH] chore: rename cms page title to "Root CMS" --- packages/root-cms/core/app.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/root-cms/core/app.tsx b/packages/root-cms/core/app.tsx index a4cd05a8..168ef482 100644 --- a/packages/root-cms/core/app.tsx +++ b/packages/root-cms/core/app.tsx @@ -94,7 +94,7 @@ export async function renderApp(req: Request, res: Response, options: any) { sidebar: cmsConfig.sidebar, }; const projectName = cmsConfig.name || cmsConfig.id || ''; - const title = projectName ? `${projectName} – Root.js CMS` : 'Root.js CMS'; + const title = projectName ? `${projectName} – Root CMS` : 'Root CMS'; const mainHtml = renderToString(); let html = `\n${mainHtml}`;