Skip to content

Commit 58eb5dc

Browse files
committed
Fix lint errors
1 parent 98a7906 commit 58eb5dc

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

example/src/App.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ function App() {
2727

2828
// Debug: Verify QueryClient configuration
2929
if (isDevelopment && typeof window !== 'undefined') {
30+
// eslint-disable-next-line no-console
3031
console.log('[App] QueryClient defaults:', queryClient.getDefaultOptions());
3132
}
3233

example/src/pages/Main/ItemDetails.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ import { H2 } from '../../components/headers';
44
import Panel from '../../layout/Panel';
55
import { Button } from '../../components/buttons';
66

7+
// eslint-disable-next-line react/prop-types
78
function ItemDetails({ item, onClose }) {
9+
// eslint-disable-next-line react/prop-types
810
const itemUrl = item.links.find((r) => r.rel === 'self')?.href;
911
const { item: newItem, isLoading, error, reload } = useItem(itemUrl);
1012

0 commit comments

Comments
 (0)