@@ -100,68 +100,19 @@ function GroupingVariant({event, showGroupingConfig, variant}: GroupingVariantPr
100
100
switch ( variant . type ) {
101
101
case EventGroupVariantType . COMPONENT :
102
102
component = variant . component ;
103
- data . push ( [
104
- t ( 'Type' ) ,
105
- < TextWithQuestionTooltip key = "type" >
106
- { variant . type }
107
- < QuestionTooltip
108
- size = "xs"
109
- position = "top"
110
- title = { t (
111
- 'Uses a complex grouping algorithm taking event data into account'
112
- ) }
113
- />
114
- </ TextWithQuestionTooltip > ,
115
- ] ) ;
103
+
116
104
if ( showGroupingConfig && variant . config ?. id ) {
117
105
data . push ( [ t ( 'Grouping Config' ) , variant . config . id ] ) ;
118
106
}
119
107
break ;
120
108
case EventGroupVariantType . CUSTOM_FINGERPRINT :
121
- data . push ( [
122
- t ( 'Type' ) ,
123
- < TextWithQuestionTooltip key = "type" >
124
- { variant . type }
125
- < QuestionTooltip
126
- size = "xs"
127
- position = "top"
128
- title = { t ( 'Overrides the default grouping by a custom fingerprinting rule' ) }
129
- />
130
- </ TextWithQuestionTooltip > ,
131
- ] ) ;
132
109
addFingerprintInfo ( data , variant ) ;
133
110
break ;
134
111
case EventGroupVariantType . BUILT_IN_FINGERPRINT :
135
- data . push ( [
136
- t ( 'Type' ) ,
137
- < TextWithQuestionTooltip key = "type" >
138
- { variant . type }
139
- < QuestionTooltip
140
- size = "xs"
141
- position = "top"
142
- title = { t (
143
- 'Overrides the default grouping by a Sentry defined fingerprinting rule'
144
- ) }
145
- />
146
- </ TextWithQuestionTooltip > ,
147
- ] ) ;
148
112
addFingerprintInfo ( data , variant ) ;
149
113
break ;
150
114
case EventGroupVariantType . SALTED_COMPONENT :
151
115
component = variant . component ;
152
- data . push ( [
153
- t ( 'Type' ) ,
154
- < TextWithQuestionTooltip key = "type" >
155
- { variant . type }
156
- < QuestionTooltip
157
- size = "xs"
158
- position = "top"
159
- title = { t (
160
- 'Uses a complex grouping algorithm taking event data and a fingerprint into account'
161
- ) }
162
- />
163
- </ TextWithQuestionTooltip > ,
164
- ] ) ;
165
116
addFingerprintInfo ( data , variant ) ;
166
117
if ( showGroupingConfig && variant . config ?. id ) {
167
118
data . push ( [ t ( 'Grouping Config' ) , variant . config . id ] ) ;
@@ -173,19 +124,6 @@ function GroupingVariant({event, showGroupingConfig, variant}: GroupingVariantPr
173
124
. find ( ( c ) : c is EntrySpans => c . type === 'spans' )
174
125
?. data ?. map ( ( span : RawSpanType ) => [ span . span_id , span . hash ] ) ?? [ ]
175
126
) ;
176
- data . push ( [
177
- t ( 'Type' ) ,
178
- < TextWithQuestionTooltip key = "type" >
179
- { variant . type }
180
- < QuestionTooltip
181
- size = "xs"
182
- position = "top"
183
- title = { t (
184
- 'Uses the evidence from performance issue detection to generate a fingerprint.'
185
- ) }
186
- />
187
- </ TextWithQuestionTooltip > ,
188
- ] ) ;
189
127
190
128
data . push ( [ 'Performance Issue Type' , variant . key ] ) ;
191
129
data . push ( [ 'Span Operation' , variant . evidence . op ] ) ;
0 commit comments