We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f38f98f commit a734ae0Copy full SHA for a734ae0
src/components/popups/KYCVerification.tsx
@@ -76,7 +76,7 @@ export default function KYCVerification({ onCompleted }: KYCVerificationProps) {
76
<span className="text-sm font-medium cursor-pointer text-primary" onClick={closeModal}>
77
{t("profile.edit.close")}
78
</span>
79
- {!verifying && (
+ {!verifying && kycStatus !== KYCSTATUS.REJECTED && (
80
<ArrowButton loading={loading} disabled={loading} onClick={verify}>
81
{completed ? completedActionText || t("kyc.default.button.completed") : actionText || t("kyc.default.button")}
82
</ArrowButton>
0 commit comments