From a72bc164a92b30a88d114936ff26d488ca286ea9 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Mon, 27 Jan 2025 17:29:30 -0800 Subject: [PATCH] Fix import order after TS --- .../DownloadClients/DownloadClients/EditDownloadClientModal.tsx | 2 +- .../DownloadClients/Manage/ManageDownloadClientsModalRow.tsx | 2 +- .../ImportLists/Manage/ManageImportListsModalRow.tsx | 2 +- .../Indexers/Indexers/Manage/ManageIndexersModalRow.tsx | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/Settings/DownloadClients/DownloadClients/EditDownloadClientModal.tsx b/frontend/src/Settings/DownloadClients/DownloadClients/EditDownloadClientModal.tsx index 95a139166..62511969a 100644 --- a/frontend/src/Settings/DownloadClients/DownloadClients/EditDownloadClientModal.tsx +++ b/frontend/src/Settings/DownloadClients/DownloadClients/EditDownloadClientModal.tsx @@ -1,7 +1,7 @@ import React, { useCallback } from 'react'; +import { useDispatch } from 'react-redux'; import Modal from 'Components/Modal/Modal'; import { sizes } from 'Helpers/Props'; -import { useDispatch } from 'react-redux'; import { clearPendingChanges } from 'Store/Actions/baseActions'; import { cancelSaveDownloadClient, diff --git a/frontend/src/Settings/DownloadClients/DownloadClients/Manage/ManageDownloadClientsModalRow.tsx b/frontend/src/Settings/DownloadClients/DownloadClients/Manage/ManageDownloadClientsModalRow.tsx index e831ae4ec..64959765c 100644 --- a/frontend/src/Settings/DownloadClients/DownloadClients/Manage/ManageDownloadClientsModalRow.tsx +++ b/frontend/src/Settings/DownloadClients/DownloadClients/Manage/ManageDownloadClientsModalRow.tsx @@ -1,10 +1,10 @@ import React, { useCallback } from 'react'; import Label from 'Components/Label'; +import SeriesTagList from 'Components/SeriesTagList'; import TableRowCell from 'Components/Table/Cells/TableRowCell'; import TableSelectCell from 'Components/Table/Cells/TableSelectCell'; import Column from 'Components/Table/Column'; import TableRow from 'Components/Table/TableRow'; -import SeriesTagList from 'Components/SeriesTagList'; import { kinds } from 'Helpers/Props'; import { SelectStateInputProps } from 'typings/props'; import translate from 'Utilities/String/translate'; diff --git a/frontend/src/Settings/ImportLists/ImportLists/Manage/ManageImportListsModalRow.tsx b/frontend/src/Settings/ImportLists/ImportLists/Manage/ManageImportListsModalRow.tsx index b8974cddf..b9d147c82 100644 --- a/frontend/src/Settings/ImportLists/ImportLists/Manage/ManageImportListsModalRow.tsx +++ b/frontend/src/Settings/ImportLists/ImportLists/Manage/ManageImportListsModalRow.tsx @@ -1,10 +1,10 @@ import React, { useCallback } from 'react'; import { useSelector } from 'react-redux'; +import SeriesTagList from 'Components/SeriesTagList'; import TableRowCell from 'Components/Table/Cells/TableRowCell'; import TableSelectCell from 'Components/Table/Cells/TableSelectCell'; import Column from 'Components/Table/Column'; import TableRow from 'Components/Table/TableRow'; -import SeriesTagList from 'Components/SeriesTagList'; import { createQualityProfileSelectorForHook } from 'Store/Selectors/createQualityProfileSelector'; import { SelectStateInputProps } from 'typings/props'; import translate from 'Utilities/String/translate'; diff --git a/frontend/src/Settings/Indexers/Indexers/Manage/ManageIndexersModalRow.tsx b/frontend/src/Settings/Indexers/Indexers/Manage/ManageIndexersModalRow.tsx index 9cbfd5d1e..8d909885d 100644 --- a/frontend/src/Settings/Indexers/Indexers/Manage/ManageIndexersModalRow.tsx +++ b/frontend/src/Settings/Indexers/Indexers/Manage/ManageIndexersModalRow.tsx @@ -1,10 +1,10 @@ import React, { useCallback } from 'react'; import Label from 'Components/Label'; +import SeriesTagList from 'Components/SeriesTagList'; import TableRowCell from 'Components/Table/Cells/TableRowCell'; import TableSelectCell from 'Components/Table/Cells/TableSelectCell'; import Column from 'Components/Table/Column'; import TableRow from 'Components/Table/TableRow'; -import SeriesTagList from 'Components/SeriesTagList'; import { kinds } from 'Helpers/Props'; import { SelectStateInputProps } from 'typings/props'; import translate from 'Utilities/String/translate';