maj cumulative

This commit is contained in:
SOC Analyst
2026-03-18 13:56:39 +01:00
parent 32a96966dd
commit c887846af5
18 changed files with 986 additions and 686 deletions

View File

@ -11,6 +11,7 @@ interface UseDetectionsParams {
search?: string;
sort_by?: string;
sort_order?: string;
group_by_ip?: boolean;
}
export function useDetections(params: UseDetectionsParams = {}) {
@ -42,6 +43,7 @@ export function useDetections(params: UseDetectionsParams = {}) {
params.search,
params.sort_by,
params.sort_order,
params.group_by_ip,
]);
return { data, loading, error };