Skip to content

Commit 655d775

Browse files
committed
style: Fix broken lint
1 parent f241165 commit 655d775

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/library-authoring/import-course/ImportDetailsPage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { useContext, useEffect, useState } from 'react';
1+
import { useContext, useState } from 'react';
22
import { Helmet } from 'react-helmet';
33
import { useNavigate, useParams } from 'react-router';
44
import { FormattedMessage, useIntl } from '@edx/frontend-platform/i18n';
@@ -27,7 +27,7 @@ export const ImportDetailsPage = () => {
2727
const intl = useIntl();
2828
const navigate = useNavigate();
2929
const { libraryId, libraryData, readOnly } = useLibraryContext();
30-
const [ enableRefeshState, setEnableRefreshState] = useState(true);
30+
const [enableRefeshState, setEnableRefreshState] = useState(true);
3131
const { courseId, migrationTaskId } = useParams();
3232
const { showToast } = useContext(ToastContext);
3333
const [disableReimport, setDisableReimport] = useState(false);

0 commit comments

Comments
 (0)