1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-27 23:06:29 -04:00

Use react-query for System Status

This commit is contained in:
Mark McDowall
2025-10-12 13:16:17 +09:00
parent fc0c26c2b3
commit 49c52c2e1a
24 changed files with 95 additions and 115 deletions
@@ -1,13 +0,0 @@
import { createSelector } from 'reselect';
import AppState from 'App/State/AppState';
function createSystemStatusSelector() {
return createSelector(
(state: AppState) => state.system.status,
(status) => {
return status.item;
}
);
}
export default createSystemStatusSelector;