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

This commit is contained in:
2026-08-22 23:08:20 +00:00
parent 4183d6386d
commit d8d489e846

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 = 60;
private readonly qrPollingMaxAttempts = 120;
private readonly transferPollingIntervalMs = 3_000;
private readonly transferPollingMaxAttempts = 100;
private readonly transferPollingMaxAttempts = 209;
private qrPollingTimeoutId: ReturnType<typeof setTimeout> | null = null;
private qrPollingAttempts = 0;