Skip to content

Commit 55cfe7f

Browse files
committed
fix(docs): remove font medium class from TableCell component in MDX
1 parent bcea0dd commit 55cfe7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/web/components/mdx.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const components: MDXComponents = {
3939
),
4040
tr: (props) => <TableRow {...props} />,
4141
th: (props) => <TableHeadCell {...props} className="px-6 py-3 text-gray-500 dark:text-gray-400" />,
42-
td: (props) => <TableCell {...props} className="px-6 py-4 font-medium" />,
42+
td: (props) => <TableCell {...props} className="px-6 py-4" />,
4343

4444
// Paragraph component
4545
p: (props) => <p {...props} className="mb-4 leading-7 text-gray-600 dark:text-gray-400" />,

0 commit comments

Comments
 (0)