We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9d8822 commit 4da74e8Copy full SHA for 4da74e8
packages/replay/src/index.ts
@@ -784,7 +784,10 @@ export class Replay implements Integration {
784
handlePerformanceObserver: (list: PerformanceObserverEntryList) => void = (list: PerformanceObserverEntryList) => {
785
// For whatever reason the observer was returning duplicate navigation
786
// entries (the other entry types were not duplicated).
787
- const newPerformanceEntries = dedupePerformanceEntries(this.performanceEvents, list.getEntries());
+ const newPerformanceEntries = dedupePerformanceEntries(
788
+ this.performanceEvents,
789
+ list.getEntries() as AllPerformanceEntry[],
790
+ );
791
this.performanceEvents = newPerformanceEntries;
792
};
793
0 commit comments