diff --git a/x-pack/plugins/security_solution/public/flyout/document_details/shared/components/cell_actions.tsx b/x-pack/plugins/security_solution/public/flyout/document_details/shared/components/cell_actions.tsx index 3ee66eb788373..8e87dd6583fd3 100644 --- a/x-pack/plugins/security_solution/public/flyout/document_details/shared/components/cell_actions.tsx +++ b/x-pack/plugins/security_solution/public/flyout/document_details/shared/components/cell_actions.tsx @@ -9,7 +9,6 @@ import type { FC } from 'react'; import React, { useMemo } from 'react'; import { useDocumentDetailsContext } from '../context'; import { getSourcererScopeId } from '../../../../helpers'; -import { useBasicDataFromDetailsData } from '../hooks/use_basic_data_from_details_data'; import { SecurityCellActionType } from '../../../../app/actions/constants'; import { CellActionsMode, @@ -40,12 +39,7 @@ interface CellActionsProps { * Security cell action wrapper for document details flyout */ export const CellActions: FC = ({ field, value, isObjectArray, children }) => { - const { dataFormattedForFieldBrowser, scopeId, isPreview } = useDocumentDetailsContext(); - const { isAlert } = useBasicDataFromDetailsData(dataFormattedForFieldBrowser); - - const triggerId = isAlert - ? SecurityCellActionsTrigger.DETAILS_FLYOUT - : SecurityCellActionsTrigger.DEFAULT; + const { scopeId, isPreview } = useDocumentDetailsContext(); const data = useMemo(() => ({ field, value }), [field, value]); const metadata = useMemo(() => ({ scopeId, isObjectArray }), [scopeId, isObjectArray]); @@ -58,7 +52,7 @@ export const CellActions: FC = ({ field, value, isObjectArray,