Disable KYC verification using const flag #11

Merged
nabarun merged 3 commits from deep-stack/testnet-onboarding-app:iv-disable-kyc-flag into main 2024-08-07 05:52:58 +00:00
2 changed files with 21 additions and 13 deletions
Showing only changes of commit 80ce257e00 - Show all commits

View File

@ -8,6 +8,7 @@ import SumsubWebSdk from "@sumsub/websdk-react";
import { MessageHandler } from "@sumsub/websdk";
import { config, fetchAccessToken, getAccessTokenExpirationHandler, options } from "../utils/sumsub";
import { ENABLE_KYC } from "../constants";
interface Participant {
cosmosAddress: string;
@ -104,6 +105,8 @@ const OnboardingSuccess = () => {
)}
</pre>
</Box>
{ENABLE_KYC ? (
<Box>
<Typography variant="h5">KYC Status</Typography>
{!loading && token && cosmosAddress && (
<SumsubWebSdk
@ -115,6 +118,9 @@ const OnboardingSuccess = () => {
/>
)}
</Box>
) : ''
}
</Box>
);
};

View File

@ -2,6 +2,7 @@ import React, { useState, useMemo, useEffect } from "react";
import { useNavigate } from "react-router-dom";
import { enqueueSnackbar } from "notistack";
import canonicalStringify from "canonical-json";
import { ethers } from "ethers";
import {
Select,
@ -73,8 +74,9 @@ const SignWithNitroKey = () => {
message,
cosmosAddress,
receivedEthSig,
kycId,
}})
kycIdHash,
},
});
}
} catch (error) {
console.log("err in signing ", error);