Skip to content

Commit e3a6714

Browse files
chore: updated to the latest version
1 parent 9df914d commit e3a6714

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

apps/frontend/src/components/RichText/RichText.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,11 @@ export const RichText: FC<Readonly<RichTextProps>> = ({
192192
},
193193
},
194194
table: {
195-
component: TypographyComp,
195+
component: (props) => (
196+
<div className="w-full overflow-auto">
197+
<TypographyComp {...props} />
198+
</div>
199+
),
196200
props: {
197201
variant: 'table',
198202
tag: 'table',

0 commit comments

Comments
 (0)