Skip to content

Commit 864d0d0

Browse files
committed
fix: Remove unused code and imports
1 parent 167b72d commit 864d0d0

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/components/AlertsTable/index.tsx

+1-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
VariableValueSelectors,
99
SceneVariables,
1010
} from '@grafana/scenes';
11-
import { createNamespaceVariable, resolveVariable } from 'common/variableHelpers';
11+
import { createNamespaceVariable } from 'common/variableHelpers';
1212
import { SortingState } from 'common/sortingHelpers';
1313
import { AsyncTable, Column, ColumnSortingConfig, QueryBuilder } from 'components/AsyncTable';
1414
import { TextColor } from 'common/types';
@@ -17,8 +17,6 @@ import { alertLabelValues } from './utils';
1717
import { expandedRowSceneBuilder } from './AlertExpandedRow';
1818
import { LabelFilters, serializeLabelFilters } from 'common/queryHelpers';
1919

20-
const KNOWN_SEVERITIES = ['critical', 'high', 'warning', 'info'];
21-
2220
interface SeverityColors {
2321
[key: string]: TextColor;
2422
}
@@ -134,8 +132,6 @@ const columns: Array<Column<TableRow>> = [
134132
}
135133
]
136134

137-
const serieMatcherPredicate = (row: TableRow) => (value: any) => value.alertname === row.alertname;
138-
139135
function rowMapper(row: TableRow, asyncRowData: any) {
140136

141137
}

0 commit comments

Comments
 (0)