Skip to content

Commit c143d17

Browse files
Fix lint errors
1 parent 99ec6fc commit c143d17

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/LLMButtons/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
import React from 'react';
21
import { useLocation } from '@docusaurus/router';
2+
import React from 'react';
33

44
import CopyForLLM from './CopyForLLM';
55
import styles from './styles.module.css';
66
import ViewAsMarkdown from './ViewAsMarkdown';
77

88
export default function LLMButtons() {
99
const location = useLocation();
10-
10+
1111
// Don't render LLMButtons if we're on a markdown view
1212
if (location.pathname.endsWith('.md')) {
1313
return null;

0 commit comments

Comments
 (0)