mirror of
https://github.com/Sonarr/Sonarr
synced 2025-12-06 08:28:37 +01:00
Remove updates, log files from app state
This commit is contained in:
parent
871ae9555b
commit
b64cc65579
2 changed files with 0 additions and 11 deletions
|
|
@ -1,16 +1,12 @@
|
|||
import LogFile from 'typings/LogFile';
|
||||
import Task from 'typings/Task';
|
||||
import AppSectionState from './AppSectionState';
|
||||
import BackupAppState from './BackupAppState';
|
||||
|
||||
export type TaskAppState = AppSectionState<Task>;
|
||||
export type LogFilesAppState = AppSectionState<LogFile>;
|
||||
|
||||
interface SystemAppState {
|
||||
backups: BackupAppState;
|
||||
logFiles: LogFilesAppState;
|
||||
tasks: TaskAppState;
|
||||
updateLogFiles: LogFilesAppState;
|
||||
}
|
||||
|
||||
export default SystemAppState;
|
||||
|
|
|
|||
|
|
@ -34,13 +34,6 @@ export const defaultState = {
|
|||
isDeleting: false,
|
||||
deleteError: null,
|
||||
items: []
|
||||
},
|
||||
|
||||
updates: {
|
||||
isFetching: false,
|
||||
isPopulated: false,
|
||||
error: null,
|
||||
items: []
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue