From 9f46fc923d6e620b4924405f975688deb406593b Mon Sep 17 00:00:00 2001 From: Bogdan Date: Mon, 12 Feb 2024 22:56:28 +0200 Subject: [PATCH] Fix typo for Downloaded Episodes Scan command name --- frontend/src/Commands/commandNames.js | 2 +- .../Folder/InteractiveImportSelectFolderModalContent.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/Commands/commandNames.js b/frontend/src/Commands/commandNames.js index c2edf05bd..13ac9d62c 100644 --- a/frontend/src/Commands/commandNames.js +++ b/frontend/src/Commands/commandNames.js @@ -6,7 +6,7 @@ export const CLEAR_LOGS = 'ClearLog'; export const CUTOFF_UNMET_EPISODE_SEARCH = 'CutoffUnmetEpisodeSearch'; export const DELETE_LOG_FILES = 'DeleteLogFiles'; export const DELETE_UPDATE_LOG_FILES = 'DeleteUpdateLogFiles'; -export const DOWNLOADED_EPSIODES_SCAN = 'DownloadedEpisodesScan'; +export const DOWNLOADED_EPISODES_SCAN = 'DownloadedEpisodesScan'; export const EPISODE_SEARCH = 'EpisodeSearch'; export const INTERACTIVE_IMPORT = 'ManualImport'; export const MISSING_EPISODE_SEARCH = 'MissingEpisodeSearch'; diff --git a/frontend/src/InteractiveImport/Folder/InteractiveImportSelectFolderModalContent.tsx b/frontend/src/InteractiveImport/Folder/InteractiveImportSelectFolderModalContent.tsx index 8013765f9..aefda32a6 100644 --- a/frontend/src/InteractiveImport/Folder/InteractiveImportSelectFolderModalContent.tsx +++ b/frontend/src/InteractiveImport/Folder/InteractiveImportSelectFolderModalContent.tsx @@ -77,7 +77,7 @@ function InteractiveImportSelectFolderModalContent( dispatch( executeCommand({ - name: commandNames.DOWNLOADED_EPSIODES_SCAN, + name: commandNames.DOWNLOADED_EPISODES_SCAN, path: folder, }) );