fix(checkout): increase polling max attempts for QR and transfer payments
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user