From 1f7d605fd53d63e9258c8b3f815ca5b31367306c Mon Sep 17 00:00:00 2001 From: stephmilovic Date: Thu, 9 Apr 2020 07:57:46 -0600 Subject: [PATCH] fix type err --- x-pack/legacy/plugins/siem/public/containers/case/api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/legacy/plugins/siem/public/containers/case/api.ts b/x-pack/legacy/plugins/siem/public/containers/case/api.ts index 5e1a6f6812a4f..12b4c80a2dd89 100644 --- a/x-pack/legacy/plugins/siem/public/containers/case/api.ts +++ b/x-pack/legacy/plugins/siem/public/containers/case/api.ts @@ -204,7 +204,7 @@ export const patchComment = async ( return convertToCamelCase(decodeCaseResponse(response)); }; -export const deleteCases = async (caseIds: string[], signal: AbortSignal): Promise => { +export const deleteCases = async (caseIds: string[], signal: AbortSignal): Promise => { const response = await KibanaServices.get().http.fetch(CASES_URL, { method: 'DELETE', query: { ids: JSON.stringify(caseIds) },