From 81886b09b0750a4daa09269fe9eb559fb171467e Mon Sep 17 00:00:00 2001 From: downiec <42552189+downiec@users.noreply.github.com> Date: Thu, 21 Nov 2024 20:50:27 -0800 Subject: [PATCH] Fixed some linting errors so frontend should build correctly. --- frontend/src/components/Globus/DatasetDownload.tsx | 2 ++ frontend/src/index.tsx | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/Globus/DatasetDownload.tsx b/frontend/src/components/Globus/DatasetDownload.tsx index 6b07fae9..2b9e0d39 100644 --- a/frontend/src/components/Globus/DatasetDownload.tsx +++ b/frontend/src/components/Globus/DatasetDownload.tsx @@ -1,3 +1,5 @@ +/* eslint-disable @typescript-eslint/no-unsafe-member-access */ +/* eslint-disable @typescript-eslint/no-unsafe-call */ import { DownloadOutlined, QuestionOutlined } from '@ant-design/icons'; import { Button, diff --git a/frontend/src/index.tsx b/frontend/src/index.tsx index 0f786d63..10dc115a 100644 --- a/frontend/src/index.tsx +++ b/frontend/src/index.tsx @@ -11,7 +11,7 @@ import { GlobusAuthProvider, KeycloakAuthProvider } from './contexts/AuthContext import { ReactJoyrideProvider } from './contexts/ReactJoyrideContext'; import './index.css'; import axios from './lib/axios'; -import { FrontendConfig } from './contexts/types'; +import { FrontendConfig } from './common/types'; const container = document.getElementById('root'); // eslint-disable-next-line @typescript-eslint/no-non-null-assertion