From c14825726db21eba87f778fcf4424ecdcd9601aa Mon Sep 17 00:00:00 2001 From: Pedro Pablo Aste Kompen Date: Tue, 23 Aug 2022 10:19:20 -0500 Subject: [PATCH] Increase polling cycles for on-ramp quotes to 6 (#4892) Co-authored-by: Gustavo Antunes <17601467+gantunesr@users.noreply.github.com> --- app/components/UI/FiatOnRampAggregator/sdk/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/UI/FiatOnRampAggregator/sdk/index.tsx b/app/components/UI/FiatOnRampAggregator/sdk/index.tsx index 7b8ea644531..f7e123a7e29 100644 --- a/app/components/UI/FiatOnRampAggregator/sdk/index.tsx +++ b/app/components/UI/FiatOnRampAggregator/sdk/index.tsx @@ -90,7 +90,7 @@ export const callbackBaseUrl = isDevelopment const appConfig = { POLLING_INTERVAL: 20000, POLLING_INTERVAL_HIGHLIGHT: 10000, - POLLING_CYCLES: 3, + POLLING_CYCLES: 6, }; const SDKContext = createContext(undefined);