Skip to content

Commit 70e20b8

Browse files
committed
Fix linting errors
1 parent e8841f1 commit 70e20b8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

data-browser/src/views/ResourcePage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import EndpointPage from './EndpointPage';
1313
import DrivePage from './DrivePage';
1414
import RedirectPage from './RedirectPage';
1515
import InvitePage from './InvitePage';
16-
import DocumentPage from './DocumentPage';
16+
import { DocumentPage } from './DocumentPage';
1717
import ErrorPage from './ErrorPage';
1818
import { ClassPage } from './ClassPage';
1919
import { FilePage } from './FilePage';

lib/src/store.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ describe('Store', () => {
3535
const testResourceSubject = 'https://example.com/test';
3636

3737
const customFetch = jest.fn(
38-
async (url: RequestInfo | URL, options: any) => {
38+
async (url: RequestInfo | URL, options: RequestInit | undefined) => {
3939
return fetch(url, options);
4040
},
4141
);

0 commit comments

Comments
 (0)