fix: remove backticks display in code

This commit is contained in:
p-sw 2024-06-02 01:59:54 +09:00
parent a431542019
commit 04b819619b

View File

@ -20,7 +20,7 @@ const overrideComponents = {
code: (props: any) => ( code: (props: any) => (
<code <code
{...props} {...props}
className={`${props.className} rounded-md bg-neutral-800 text-orange-500 font-light p-1`} className={`${props.className} rounded-md bg-neutral-800 text-orange-500 font-light p-1 before:content-none after:content-none`}
/> />
), ),
}; };