diff --git a/processor/transform/tables-to-jsx.ts b/processor/transform/tables-to-jsx.ts index 5ee0a66cb..5cd028045 100644 --- a/processor/transform/tables-to-jsx.ts +++ b/processor/transform/tables-to-jsx.ts @@ -69,7 +69,7 @@ const visitor = (table: Table, index: number, parent: Parents) => { children: row.children.map((cell, index) => { return { type: 'mdxJsxFlowElement', - name: 'th', + name: 'td', children: cell.children, attributes: [styles[index]], };