Render KYC status if flag is enabled

This commit is contained in:
IshaVenikar 2024-08-07 10:33:18 +05:30
parent 2d1d7d36f2
commit 80ce257e00
2 changed files with 21 additions and 13 deletions

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,
@ -58,7 +59,7 @@ const SignWithNitroKey = () => {
setIsLoading(false)
setEthSignature(ethSignature);
if(ENABLE_KYC) {
if (ENABLE_KYC) {
navigate("/user-verification", {
state: {
message,
@ -73,8 +74,9 @@ const SignWithNitroKey = () => {
message,
cosmosAddress,
receivedEthSig,
kycId,
}})
kycIdHash,
},
});
}
} catch (error) {
console.log("err in signing ", error);