diff --git a/src/components/StaticSites/Markdown.tsx b/src/components/StaticSites/Markdown.tsx index 8e0003b1..e8a1db85 100644 --- a/src/components/StaticSites/Markdown.tsx +++ b/src/components/StaticSites/Markdown.tsx @@ -6,7 +6,7 @@ import rehypeKatex from 'rehype-katex' import remarkGfm from 'remark-gfm' import remarkMath from 'remark-math' -import {H1, H2, H3, MarkdownLink, P, Table, Td, Th, Ul} from './Texts' +import {H1, H2, H3, MarkdownLink, P, Table, Td, Th} from './Texts' type MarkdownProps = { content: string @@ -25,7 +25,6 @@ export const Markdown: FC = ({content}) => ( h1: H1, h2: H2, h3: H3, - ul: Ul, }} > {content} diff --git a/src/components/StaticSites/Texts.tsx b/src/components/StaticSites/Texts.tsx index 91abe3fe..2991aaa1 100644 --- a/src/components/StaticSites/Texts.tsx +++ b/src/components/StaticSites/Texts.tsx @@ -38,8 +38,3 @@ export const H3: FC = ({children}) => ( {children} ) -export const Ul: FC = ({children}) => ( - - {children} - -)