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 9df914d commit e3a6714Copy full SHA for e3a6714
apps/frontend/src/components/RichText/RichText.tsx
@@ -192,7 +192,11 @@ export const RichText: FC<Readonly<RichTextProps>> = ({
192
},
193
194
table: {
195
- component: TypographyComp,
+ component: (props) => (
196
+ <div className="w-full overflow-auto">
197
+ <TypographyComp {...props} />
198
+ </div>
199
+ ),
200
props: {
201
variant: 'table',
202
tag: 'table',
0 commit comments