Skip to content

Commit

Permalink
types cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
yctercero committed Jul 17, 2020
1 parent 55a2a41 commit d0abb2a
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import React from 'react';
import { ThemeProvider } from 'styled-components';
import { mount } from 'enzyme';
import { EuiComboBox, EuiComboBoxOptionOption } from '@elastic/eui';
import euiLightVars from '@elastic/eui/dist/eui_theme_light.json';

import { ExceptionListItemComponent } from './builder_exception_item';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ export const ExceptionBuilder = ({
andLogicIncluded={andLogicIncluded}
isOnlyItem={exceptions.length === 1}
onDeleteExceptionItem={handleDeleteExceptionItem}
onExceptionItemChange={handleExceptionItemChange}
onChangeExceptionItem={handleExceptionItemChange}
/>
</EuiFlexItem>
</EuiFlexGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,13 +179,6 @@ export const EXCEPTION_FIELD_LISTS_PLACEHOLDER = i18n.translate(
}
);

export const ADD_EXCEPTION_TITLE = i18n.translate(
'xpack.securitySolution.exceptions.addExceptionTitle',
{
defaultMessage: 'Add exception',
}
);

export const AND = i18n.translate('xpack.securitySolution.exceptions.andDescription', {
defaultMessage: 'AND',
});
Expand Down

0 comments on commit d0abb2a

Please sign in to comment.