develop #269

Merged
andrey.dekterev merged 2 commits from develop into master 2 years ago
  1. 9
      src/features/BuyMatchPopup/components/PackageSelectionStep/index.tsx
  2. 2
      src/requests/getMatches/getHomeMatches.tsx

@ -161,6 +161,15 @@ export const PackageSelectionStep = () => {
buttonLexic={buttonLexic}
/>
</Body>
{selectedPackage && isIframePayment && (
<IframePayment
match={match}
open={isOpenIframe}
paymentSystem={paymentSystem}
selectedPackage={selectedPackage}
setIsOpenIframe={setIsOpenIframe}
/>
)}
</Wrapper>
)
}

@ -22,7 +22,7 @@ export const getHomeMatches = async ({
offset,
timezoneOffset,
}: Args): Promise<MatchesBySection> => {
const url = `${API_ROOT}/v1/data/matches/query`
const url = `${API_ROOT}/v2/data/matches/query`
const config = {
body: {

Loading…
Cancel
Save