Skip to content

Commit

Permalink
[Security Solution] Fixes breaking type in main (#152654)
Browse files Browse the repository at this point in the history
Addresses #152653

Fixes a merge conflict that somehow made its way into main between these
two PRs ([1](#152301),
[2](#151952))
  • Loading branch information
dplumlee committed Mar 5, 2023
1 parent 203fa3a commit 05f306c
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ export const useExceptionsListCard = ({
handleExport({
id: exceptionsList.id,
listId: exceptionsList.list_id,
name: exceptionsList.name,
namespaceType: exceptionsList.namespace_type,
includeExpiredExceptions: true,
})();
Expand Down Expand Up @@ -164,6 +165,7 @@ export const useExceptionsListCard = ({
[
exceptionsList.id,
exceptionsList.list_id,
exceptionsList.name,
exceptionsList.namespace_type,
handleDelete,
setShowExportModal,
Expand Down

0 comments on commit 05f306c

Please sign in to comment.