update camera base URL, enhance alert context, and improve history list functionality

This commit is contained in:
2025-09-24 12:28:14 +01:00
parent fe28247b1c
commit efd037754e
12 changed files with 224 additions and 17 deletions

View File

@@ -50,6 +50,13 @@ export function reducer(state: AlertState, action: AlertPayload) {
};
}
case "DELETE": {
return {
...state,
alertList: action.payload,
};
}
default:
return { ...state };
}