diff options
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/cv.tsx | 2 | ||||
| -rw-r--r-- | src/pages/projets/[slug].tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pages/cv.tsx b/src/pages/cv.tsx index d9f7031..c2d3588 100644 --- a/src/pages/cv.tsx +++ b/src/pages/cv.tsx @@ -124,7 +124,7 @@ const components: MDXComponents = { h4: H4, h5: H5, h6: H6, - li: ListItem, + li: ({ ref, ...props }) => <ListItem {...props} />, Link, ol: OrderedList, ul: UnorderedList, diff --git a/src/pages/projets/[slug].tsx b/src/pages/projets/[slug].tsx index 17be961..d397d27 100644 --- a/src/pages/projets/[slug].tsx +++ b/src/pages/projets/[slug].tsx @@ -140,7 +140,7 @@ const components: MDXComponents = { h5: H5, h6: H6, Image: BorderedImage, - li: ListItem, + li: ({ ref, ...props }) => <ListItem {...props} />, Link, ol: OrderedList, ul: UnorderedList, |
