Skip to content

Commit 4380ce7

Browse files
Lint fix
1 parent b3a47b9 commit 4380ce7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

frontend/src/components/EmptyStates/EmptyGalleryState.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { FolderOpen, Image as ImageIcon } from 'lucide-react';
2-
import { useNavigate } from "react-router";
3-
import { ROUTES } from '@/constants/routes';
2+
import { useNavigate } from 'react-router';
3+
import { ROUTES } from '@/constants/routes';
44

55
export const EmptyGalleryState = () => {
66
const navigate = useNavigate();
@@ -21,14 +21,14 @@ export const EmptyGalleryState = () => {
2121
<div className="flex items-center gap-2">
2222
<FolderOpen className="h-4 w-4" />
2323
<span>
24-
Go to{" "}
24+
Go to{' '}
2525
<button
2626
type="button"
27-
onClick={() => navigate(`/${ROUTES.SETTINGS}`)}
28-
className="text-blue-500 hover:underline focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-blue-500 focus-visible:ring-offset-2 rounded"
27+
onClick={() => navigate(`/${ROUTES.SETTINGS}`)}
28+
className="rounded text-blue-500 hover:underline focus-visible:ring-2 focus-visible:ring-blue-500 focus-visible:ring-offset-2 focus-visible:outline-none"
2929
>
3030
Settings
31-
</button>{" "}
31+
</button>{' '}
3232
to add folders.
3333
</span>
3434
</div>

0 commit comments

Comments
 (0)