We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dad9bb commit 9b49b8dCopy full SHA for 9b49b8d
package/src/components/Message/MessageSimple/utils/renderText.tsx
@@ -423,6 +423,10 @@ export const renderText = <
423
);
424
425
const customRules = {
426
+ blockQuote: {
427
+ react: blockQuoteReact,
428
+ },
429
+ codeBlock: { react: codeBlockReact },
430
// do not render images, we will scrape them out of the message and show on attachment card component
431
image: { match: () => null },
432
link: { react: linkReact },
@@ -442,11 +446,7 @@ export const renderText = <
442
446
},
443
447
}
444
448
: {}),
445
- codeBlock: { react: codeBlockReact },
449
table: { react: tableReact },
- blockQuote: {
- react: blockQuoteReact,
- },
450
};
451
452
return (
0 commit comments