You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -36,7 +36,13 @@ export function trackComponent(options?: TrackComponentOptions): void {
36
36
}
37
37
38
38
if(mergedOptions.trackUpdates){
39
-
recordUpdateSpans(componentName);
39
+
try{
40
+
recordUpdateSpans(componentName);
41
+
}catch(e){
42
+
logger.warn(
43
+
"Cannot track component updates. This is likely because you're using Svelte 5 in Runes mode. Set `trackUpdates: false` in `withSentryConfig` or `trackComponent` to disable this warning.",
0 commit comments