Skip to content

Commit 0d0440b

Browse files
authored
ref(grouping): Remove unused properties in EventGroupingConfig type (#97404)
This is a follow-up to #97234, which removed some legacy attributes from grouping configs, since they weren't being used in either the front end or the backend. In this PR, the same attributes are removed from the front end `EventGroupingConfig` type.
1 parent 4faac74 commit 0d0440b

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

static/app/types/event.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,8 @@ export type EventGroupComponent = {
3030
};
3131
export type EventGroupingConfig = {
3232
base: string | null;
33-
changelog: string;
3433
delegates: string[];
35-
hidden: boolean;
3634
id: string;
37-
latest: boolean;
38-
risk: number;
3935
strategies: string[];
4036
};
4137

tests/js/fixtures/groupingConfigs.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,7 @@ export function GroupingConfigsFixture(): EventGroupingConfig[] {
55
{
66
id: 'default:XXXX',
77
base: null,
8-
changelog: '',
98
delegates: [],
10-
hidden: false,
11-
latest: true,
12-
risk: 1,
139
strategies: [],
1410
},
1511
];

0 commit comments

Comments
 (0)