Skip to content

Commit 06e3599

Browse files
Fix lint errors
1 parent c6dccf8 commit 06e3599

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/theme/DocItem/Ignore/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export default function DocItemContent({ children }) {
5252
const shouldShowLLMButtons = allowedPaths.some((path) => location.pathname.startsWith(path));
5353

5454
return (
55-
<div className={ThemeClassNames.docs.docMarkdown}>
55+
<div className={clsx(ThemeClassNames.docs.docMarkdown, 'markdown')}>
5656
{syntheticTitle && <Heading as="h1">{syntheticTitle}</Heading>}
5757
{shouldShowLLMButtons && <LLMButtons />}
5858
<MDXContent>{children}</MDXContent>

0 commit comments

Comments
 (0)