Skip to content

Commit 4a266ab

Browse files
committed
ref(replay): Fix accidental renaming
1 parent 5f9cd66 commit 4a266ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/replay/src/replay.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ export class ReplayContainer {
335335
return;
336336
}
337337

338-
this._performanceObserver = new PerformanceObserver(this.handle_performanceObserver);
338+
this._performanceObserver = new PerformanceObserver(this.handlePerformanceObserver);
339339

340340
// Observe almost everything for now (no mark/measure)
341341
[
@@ -573,7 +573,7 @@ export class ReplayContainer {
573573
/**
574574
* Keep a list of performance entries that will be sent with a replay
575575
*/
576-
handle_performanceObserver: (list: PerformanceObserverEntryList) => void = (list: PerformanceObserverEntryList) => {
576+
handlePerformanceObserver: (list: PerformanceObserverEntryList) => void = (list: PerformanceObserverEntryList) => {
577577
// For whatever reason the observer was returning duplicate navigation
578578
// entries (the other entry types were not duplicated).
579579
const newPerformanceEntries = dedupePerformanceEntries(

0 commit comments

Comments
 (0)