fix(checkout): increase polling max attempts for QR and transfer payments

This commit is contained in:
2026-08-22 23:06:38 +00:00
parent 8089298383
commit 4183d6386d

View File

@@ -69,9 +69,9 @@ export class CheckoutPageComponent implements OnInit, OnDestroy {
private readonly toastService = inject(ToastService);
private readonly cartService = inject(CartService);
private readonly qrPollingIntervalMs = 5_000;
private readonly qrPollingMaxAttempts = 9;
private readonly qrPollingMaxAttempts = 60;
private readonly transferPollingIntervalMs = 3_000;
private readonly transferPollingMaxAttempts = 4;
private readonly transferPollingMaxAttempts = 100;
private qrPollingTimeoutId: ReturnType<typeof setTimeout> | null = null;
private qrPollingAttempts = 0;