File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 10
10
11
11
- ** feat(performance): create Interaction standalone spans on inp events (#10709 )**
12
12
13
- This release adds support for the INP web vital. This is currently only supported for Saas Sentry, and product support is released with
14
- the upcoming ` 24.3.0 ` release of self-hosted.
13
+ This release adds support for the INP web vital. This is currently only supported for Saas Sentry, and product support
14
+ is released with the upcoming ` 24.3.0 ` release of self-hosted.
15
15
16
16
To opt-in to this feature, you can use the ` enableInp ` option in the ` browserTracingIntegration ` :
17
17
Original file line number Diff line number Diff line change @@ -42,7 +42,8 @@ export async function sendFeedbackRequest(
42
42
}
43
43
44
44
const feedbackEvent = await prepareFeedbackEvent ( {
45
- scope,
45
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
46
+ scope : scope as any ,
46
47
client,
47
48
event : baseEvent ,
48
49
} ) ;
Original file line number Diff line number Diff line change @@ -132,7 +132,10 @@ export function createWidget({
132
132
function handleOpenDialog ( ) : void {
133
133
// Flush replay if integration exists
134
134
const client = getClient ( ) ;
135
- const replay = client && client . getIntegrationByName < { name : string ; flush : ( ) => Promise < void > } > ( 'Replay' ) ;
135
+ const replay =
136
+ client &&
137
+ client . getIntegrationByName &&
138
+ client . getIntegrationByName < { name : string ; flush : ( ) => Promise < void > ; setupOnce : ( ) => void } > ( 'Replay' ) ;
136
139
if ( ! replay ) {
137
140
return ;
138
141
}
You can’t perform that action at this time.
0 commit comments