Skip to content

Commit 2c462d1

Browse files
authored
Disable kyc on chain buttom (#2432)
1 parent 0b38399 commit 2c462d1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/apps/human-app/frontend/src/pages/worker/profile/profile-actions.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { RegisterAddressBtn } from '@/pages/worker/profile/register-address-btn'
1212
import { DoneLabel } from '@/pages/worker/profile/done-label';
1313
import { useRegisterAddressNotifications } from '@/hooks/use-register-address-notifications';
1414
import { useRegisterAddressMutation } from '@/api/services/worker/use-register-address';
15-
import { RegisterAddressOnChainButton } from '@/pages/worker/profile/register-address-on-chain-btn';
15+
// import { RegisterAddressOnChainButton } from '@/pages/worker/profile/register-address-on-chain-btn';
1616

1717
export function ProfileActions() {
1818
const {
@@ -99,15 +99,15 @@ export function ProfileActions() {
9999
<RegisterAddressBtn />
100100
</Grid>
101101
) : null}
102-
<Grid>
102+
{/* <Grid>
103103
{kycApproved && user.wallet_address ? (
104104
<RegisterAddressOnChainButton />
105105
) : (
106106
<Button disabled fullWidth>
107107
{t('worker.profile.addKYCInfoOnChain')}
108108
</Button>
109109
)}
110-
</Grid>
110+
</Grid> */}
111111
</Grid>
112112
);
113113
}

0 commit comments

Comments
 (0)