1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-26 22:56:23 -04:00

Use react-query for wanted missing and cutoff unmet

This commit is contained in:
Mark McDowall
2025-11-14 16:31:59 -08:00
parent 5a702dec12
commit 4071278183
16 changed files with 512 additions and 613 deletions
-2
View File
@@ -21,7 +21,6 @@ import RootFolderAppState from './RootFolderAppState';
import SeriesAppState, { SeriesIndexAppState } from './SeriesAppState';
import SettingsAppState from './SettingsAppState';
import TagsAppState from './TagsAppState';
import WantedAppState from './WantedAppState';
export interface FilterBuilderPropOption {
id: string;
@@ -99,7 +98,6 @@ interface AppState {
seriesIndex: SeriesIndexAppState;
settings: SettingsAppState;
tags: TagsAppState;
wanted: WantedAppState;
}
export default AppState;