fix: Adds logging for SPA route navigation with React router (#21960)

This commit is contained in:
Eric Briscoe
2022-10-28 13:00:45 -07:00
committed by GitHub
parent d3f930a557
commit d1807db041
4 changed files with 15 additions and 5 deletions

View File

@@ -26,9 +26,9 @@ class DebouncedMessageQueue {
}) {
this.queue = [];
this.sizeThreshold = sizeThreshold;
this.delayThrehold = delayThreshold;
this.delayThreshold = delayThreshold;
this.trigger = debounce(this.trigger.bind(this), this.delayThrehold);
this.trigger = debounce(this.trigger.bind(this), this.delayThreshold);
this.callback = callback;
}