Skip to content

Commit 16c43d9

Browse files
committed
chore: lint
1 parent 4c6aff9 commit 16c43d9

File tree

3 files changed

+1
-12
lines changed

3 files changed

+1
-12
lines changed

src/components/debug.test.tsx

Lines changed: 0 additions & 10 deletions
This file was deleted.

src/components/ui/Debug.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ describe('Debug', () => {
2828
const { container, getByRole } = render(<Debug value={{ test: 'test' }} isOpen={false} />);
2929
expect(container).not.toHaveTextContent('test');
3030
await userEvent.click(getByRole('button'));
31-
expect(container).toHaveTextContent('test');
31+
expect(container.parentElement).toHaveTextContent('test');
3232
await userEvent.click(getByRole('button'));
3333
expect(container).not.toHaveTextContent('test');
3434
});

src/routes/profile/$handle/index.lazy.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import { PostCard } from '@/components/PostCard';
66
import { BSkyPost } from '@/lib/bluesky/types/BSkyPost';
77
import { useTranslation } from 'react-i18next';
88
import { useSettings } from '@/hooks/useSetting';
9-
import { Image } from '@/components/ui/Image';
109
import { Badge } from '@/components/ui/Badge';
1110
import { FollowButton } from '@/components/ui/FollowButton';
1211
import { FormattedNumber } from '@/components/ui/FormattedNumber';

0 commit comments

Comments
 (0)