Skip to content

Commit 772497f

Browse files
author
ACR1209
committed
Fix linting
1 parent bc69c4a commit 772497f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/SnippetList.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ const SnippetList = () => {
1818
const [searchParams, setSearchParams] = useSearchParams();
1919
const { fetchedSnippets, loading } = useSnippets();
2020
const { language, subLanguage, snippet, setSnippet } = useAppContext();
21-
21+
2222
const [isModalOpen, setIsModalOpen] = useState<boolean>(false);
23-
23+
2424
const shouldReduceMotion = useReducedMotion();
2525

2626
const handleOpenModal = (selected: SnippetType) => () => {
@@ -54,7 +54,7 @@ const SnippetList = () => {
5454
}
5555
// eslint-disable-next-line react-hooks/exhaustive-deps
5656
}, [fetchedSnippets, searchParams]);
57-
57+
5858
if (loading) return null;
5959

6060
return (

0 commit comments

Comments
 (0)