From fdf6cff899589acf663a90c087a71656820ed6f9 Mon Sep 17 00:00:00 2001 From: Pedro Pablo Aste Kompen Date: Mon, 22 Aug 2022 15:01:25 -0500 Subject: [PATCH] Increase polling cycles for on-ramp quotes to 6 --- 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);