[Security Solution] Fixes breaking type in main (#152654)

Addresses https://github.com/elastic/kibana/issues/152653

Fixes a merge conflict that somehow made its way into main between these
two PRs ([1](https://github.com/elastic/kibana/pull/152301),
[2](https://github.com/elastic/kibana/pull/151952))
This commit is contained in:
Davis Plumlee 2023-03-05 13:54:16 -05:00 committed by GitHub
parent 203fa3a955
commit 05f306ce2e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -130,6 +130,7 @@ export const useExceptionsListCard = ({
handleExport({
id: exceptionsList.id,
listId: exceptionsList.list_id,
name: exceptionsList.name,
namespaceType: exceptionsList.namespace_type,
includeExpiredExceptions: true,
})();
@ -164,6 +165,7 @@ export const useExceptionsListCard = ({
[
exceptionsList.id,
exceptionsList.list_id,
exceptionsList.name,
exceptionsList.namespace_type,
handleDelete,
setShowExportModal,