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';