diff --git a/components/NotionPage.tsx b/components/NotionPage.tsx index 3cbbe2bcdf..0daba5d2fb 100644 --- a/components/NotionPage.tsx +++ b/components/NotionPage.tsx @@ -210,7 +210,7 @@ export const NotionPage: React.FC = ({ return } - const title = getBlockTitle(block, recordMap) || site.name + const title = Array.from(new Set([getBlockTitle(block, recordMap), site.name])).filter(o=>o).join(' - ') console.log('notion page', { isDev: config.isDev,