diff --git a/packages/twenty-front/src/modules/ai/components/LazyMarkdownRenderer.tsx b/packages/twenty-front/src/modules/ai/components/LazyMarkdownRenderer.tsx index 315c21ad5b..43f60f32e9 100644 --- a/packages/twenty-front/src/modules/ai/components/LazyMarkdownRenderer.tsx +++ b/packages/twenty-front/src/modules/ai/components/LazyMarkdownRenderer.tsx @@ -121,6 +121,24 @@ const MarkdownRenderer = lazy(async () => { li: ({ children }) => (
  • {processChildrenForRecordLinks(children)}
  • ), + h1: ({ children }) => ( +

    {processChildrenForRecordLinks(children)}

    + ), + h2: ({ children }) => ( +

    {processChildrenForRecordLinks(children)}

    + ), + h3: ({ children }) => ( +

    {processChildrenForRecordLinks(children)}

    + ), + h4: ({ children }) => ( +

    {processChildrenForRecordLinks(children)}

    + ), + h5: ({ children }) => ( +
    {processChildrenForRecordLinks(children)}
    + ), + h6: ({ children }) => ( +
    {processChildrenForRecordLinks(children)}
    + ), a: ({ children, href, title, node: _node }) => (