From 93e2716817ab053751527718d661f5fd807e78e9 Mon Sep 17 00:00:00 2001 From: Ruslan Khayrullin Date: Thu, 6 Jul 2023 15:08:04 +0500 Subject: [PATCH 1/2] feat(in-719): change api version --- src/requests/getMatches/getHomeMatches.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/requests/getMatches/getHomeMatches.tsx b/src/requests/getMatches/getHomeMatches.tsx index 35c41bd6..4cf3adc4 100644 --- a/src/requests/getMatches/getHomeMatches.tsx +++ b/src/requests/getMatches/getHomeMatches.tsx @@ -22,7 +22,7 @@ export const getHomeMatches = async ({ offset, timezoneOffset, }: Args): Promise => { - const url = `${API_ROOT}/v1/data/matches/query` + const url = `${API_ROOT}/v2/data/matches/query` const config = { body: { -- 2.30.2 From 77f71b852bfafdc3887393a2b199a28949207b8d Mon Sep 17 00:00:00 2001 From: Rakov Date: Fri, 7 Jul 2023 16:40:31 +0300 Subject: [PATCH 2/2] fix(#phonepe): fix iframe payment for mobile --- .../components/PackageSelectionStep/index.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/features/BuyMatchPopup/components/PackageSelectionStep/index.tsx b/src/features/BuyMatchPopup/components/PackageSelectionStep/index.tsx index f65af167..d6f3aa04 100644 --- a/src/features/BuyMatchPopup/components/PackageSelectionStep/index.tsx +++ b/src/features/BuyMatchPopup/components/PackageSelectionStep/index.tsx @@ -161,6 +161,15 @@ export const PackageSelectionStep = () => { buttonLexic={buttonLexic} /> + {selectedPackage && isIframePayment && ( + + )} ) } -- 2.30.2