@opexa/portal-components 0.0.1059 → 0.0.1060
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -151,13 +151,11 @@ export function Withdrawal() {
|
|
|
151
151
|
if (parseDecimal(wallet?.balance, 0) < 1) {
|
|
152
152
|
return _jsx(InsufficientBalance, {});
|
|
153
153
|
}
|
|
154
|
-
if (memberVerification?.status === 'PENDING') {
|
|
155
|
-
return _jsx(_AccountVerificationPending, {});
|
|
156
|
-
}
|
|
157
154
|
if (restrictWithdrawalsToVerifiedMembers &&
|
|
158
155
|
(!memberVerification ||
|
|
159
156
|
(memberVerification.status !== 'APPROVED' &&
|
|
160
|
-
memberVerification.status !== 'VERIFIED'
|
|
157
|
+
memberVerification.status !== 'VERIFIED' &&
|
|
158
|
+
memberVerification.status !== 'PENDING'))) {
|
|
161
159
|
return _jsx(AccountVerificationRequired, {});
|
|
162
160
|
}
|
|
163
161
|
if (enabledPaymentMethods.length <= 0) {
|