From d443e51d30594328bd98fa08e83bc7930045263d Mon Sep 17 00:00:00 2001 From: nymkappa <1612910616@pm.me> Date: Tue, 16 Apr 2024 11:43:58 +0900 Subject: [PATCH] [accelerator] if eligible, show pizza accel summary by default --- frontend/src/app/components/tracker/tracker.component.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/src/app/components/tracker/tracker.component.ts b/frontend/src/app/components/tracker/tracker.component.ts index e9a6ab2ae..d07c87510 100644 --- a/frontend/src/app/components/tracker/tracker.component.ts +++ b/frontend/src/app/components/tracker/tracker.component.ts @@ -351,6 +351,9 @@ export class TrackerComponent implements OnInit, OnDestroy { } if (txPosition.position?.block > 0 && this.tx.weight < 4000) { this.accelerationEligible = true; + if (this.acceleratorAvailable && this.paymentType === 'cashapp') { + this.showAccelerationSummary = true; + } } } } else {