From 457b0e6ffae66a8d74ffe75471cef7dc95fb5145 Mon Sep 17 00:00:00 2001 From: jramos0 Date: Fri, 3 Jul 2026 04:18:15 -0600 Subject: [PATCH] Adding debounceTime --- .../acceleration-stats/acceleration-stats.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/app/components/acceleration/acceleration-stats/acceleration-stats.component.ts b/frontend/src/app/components/acceleration/acceleration-stats/acceleration-stats.component.ts index ddfc5351e..9735055c4 100644 --- a/frontend/src/app/components/acceleration/acceleration-stats/acceleration-stats.component.ts +++ b/frontend/src/app/components/acceleration/acceleration-stats/acceleration-stats.component.ts @@ -45,6 +45,7 @@ export class AccelerationStatsComponent implements OnInit, OnChanges { websocketRefresh$, this.stateService.chainTip$.pipe(distinctUntilChanged()) ).pipe( + debounceTime(0), switchMap(() => this.servicesApiService .getAccelerationStats$({ timeframe: this.timespan })