Skip to content

Commit

Permalink
remove commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
maximpn committed Nov 11, 2024
1 parent 33a21a5 commit 64b371f
Showing 1 changed file with 1 addition and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@ import {
QueryLanguageEnum,
} from '../../../../../../../../../common/api/detection_engine';
import { EqlQueryEditAdapter } from './eql_query_edit_adapter';
// import {
// debounceAsync,
// eqlValidator,
// } from '@kbn/security-solution-plugin/public/detection_engine/rule_creation_ui/components/eql_query_bar/validators';

export function EqlQueryEditForm(): JSX.Element {
return (
Expand All @@ -32,15 +28,7 @@ export function EqlQueryEditForm(): JSX.Element {
);
}

const kqlQuerySchema = {
eqlQuery: {
validations: [
// {
// validator: debounceAsync(eqlValidator, 300),
// },
],
},
} as FormSchema<{
const kqlQuerySchema = {} as FormSchema<{
eqlQuery: RuleEqlQuery;
}>;

Expand Down

0 comments on commit 64b371f

Please sign in to comment.