diff --git a/packages/notion-utils/src/get-page-content-block-ids.ts b/packages/notion-utils/src/get-page-content-block-ids.ts index 9090ee5f..e5716c71 100644 --- a/packages/notion-utils/src/get-page-content-block-ids.ts +++ b/packages/notion-utils/src/get-page-content-block-ids.ts @@ -48,6 +48,11 @@ export const getPageContentBlockIds = ( if (referenceId) { addContentBlocks(referenceId) } + + const aliasId = (format as any).alias_pointer?.id + if (aliasId) { + addContentBlocks(aliasId) + } } if (!content || !Array.isArray(content)) {