From d8d489e84644156a5ba19276e83751279f67f0dc Mon Sep 17 00:00:00 2001 From: nahu Date: Sat, 22 Aug 2026 23:08:20 +0000 Subject: [PATCH] fix(checkout): increase polling max attempts for QR and transfer payments --- .../store/pages/checkout-page/checkout-page.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/features/store/pages/checkout-page/checkout-page.component.ts b/src/app/features/store/pages/checkout-page/checkout-page.component.ts index 8ce62a9..e4205dd 100644 --- a/src/app/features/store/pages/checkout-page/checkout-page.component.ts +++ b/src/app/features/store/pages/checkout-page/checkout-page.component.ts @@ -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 | null = null; private qrPollingAttempts = 0;