From 4183d6386dfae5bbf02de40852d6192f5c2d752f Mon Sep 17 00:00:00 2001 From: nahu Date: Sat, 22 Aug 2026 23:06:38 +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 fc5b99c..8ce62a9 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 = 9; + private readonly qrPollingMaxAttempts = 60; private readonly transferPollingIntervalMs = 3_000; - private readonly transferPollingMaxAttempts = 4; + private readonly transferPollingMaxAttempts = 100; private qrPollingTimeoutId: ReturnType | null = null; private qrPollingAttempts = 0;