fix(Notion Node): Block with text results in a body validation error (#8622)

This commit is contained in:
Michael Kret
2024-02-14 13:05:06 +02:00
committed by GitHub
parent f5274302f8
commit 6bc1c3d7a8
2 changed files with 34 additions and 1 deletions

View File

@@ -307,7 +307,7 @@ export function formatBlocks(blocks: IDataObject[]) {
...(block.type === 'to_do' ? { checked: block.checked } : {}),
...(block.type === 'image' ? { type: 'external', external: { url: block.url } } : {}),
// prettier-ignore,
...(!['to_do', 'image'].includes(block.type as string) ? getTextBlocks(block) : {}),
...(!['image'].includes(block.type as string) ? getTextBlocks(block) : {}),
},
});
}