Skip to content

Commit

Permalink
chore: rename cms page title to "Root CMS"
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenle committed Jun 8, 2024
1 parent 11fb760 commit 403bc44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/root-cms/core/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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(<App title={title} ctx={ctx} />);
let html = `<!doctype html>\n${mainHtml}`;
Expand Down

0 comments on commit 403bc44

Please sign in to comment.