diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/three_way_diff/final_edit/fields/threshold/threshold_adapter.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/three_way_diff/final_edit/fields/threshold/threshold_adapter.tsx index 7089a40eb7fd5..7bf0eaf5e6b05 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/three_way_diff/final_edit/fields/threshold/threshold_adapter.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/three_way_diff/final_edit/fields/threshold/threshold_adapter.tsx @@ -6,13 +6,10 @@ */ import React from 'react'; -import { EuiAutoSizer } from '@elastic/eui'; import { useDiffableRuleDataView } from '../hooks/use_diffable_rule_data_view'; import type { DiffableRule } from '../../../../../../../../../common/api/detection_engine'; import { ThresholdEdit } from '../../../../../../../rule_creation/components/threshold_edit'; -const MIN_ROW_LAYOUT_WIDTH = 560; - interface ThresholdAdapterProps { finalDiffableRule: DiffableRule; } @@ -22,17 +19,5 @@ export function ThresholdAdapter({ finalDiffableRule }: ThresholdAdapterProps): const esFields = dataView?.fields || []; - return ( - - {(size) => ( -
- -
- )} -
- ); + return ; }