Skip to content

Commit a699b95

Browse files
committed
ref: remove unused code & exports
1 parent 6d4edd3 commit a699b95

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

static/app/types/workflowEngine/dataConditions.tsx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,6 @@ export enum DataConditionGroupLogicType {
5252
NONE = 'none',
5353
}
5454

55-
export const enum DetectorPriorityLevel {
56-
HIGH = 75,
57-
MEDIUM = 50,
58-
LOW = 25,
59-
}
60-
6155
export interface DataCondition {
6256
comparison: any;
6357
comparison_type: DataConditionType;

tests/js/fixtures/dataConditions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
DataConditionType,
88
} from 'sentry/types/workflowEngine/dataConditions';
99

10-
export function DataConditionFixture(params: Partial<DataCondition> = {}): DataCondition {
10+
function DataConditionFixture(params: Partial<DataCondition> = {}): DataCondition {
1111
return {
1212
comparison_type: DataConditionType.EQUAL,
1313
comparison: '8',

0 commit comments

Comments
 (0)