@@ -109,7 +109,6 @@ function _SignUpContinue() {
109
109
110
110
const hasEmail = ! ! formState . emailAddress . value ;
111
111
const hasVerifiedExternalAccount = signUp . verifications ?. externalAccount ?. status == 'verified' ;
112
- const hasVerifiedWeb3 = signUp . verifications ?. web3Wallet ?. status == 'verified' ;
113
112
114
113
const fields = determineActiveFields ( {
115
114
attributes,
@@ -122,7 +121,6 @@ function _SignUpContinue() {
122
121
minimizeFieldsForExistingSignup ( fields , signUp ) ;
123
122
124
123
const oauthOptions = userSettings . authenticatableSocialStrategies ;
125
- const web3Options = userSettings . web3FirstFactors ;
126
124
127
125
const handleChangeActive = ( type : ActiveIdentifier ) => {
128
126
if ( ! emailOrPhone ( attributes , isProgressiveSignUp ) ) {
@@ -184,7 +182,6 @@ function _SignUpContinue() {
184
182
185
183
const canToggleEmailPhone = emailOrPhone ( attributes , isProgressiveSignUp ) ;
186
184
const showOauthProviders = ! hasVerifiedExternalAccount && oauthOptions . length > 0 ;
187
- const showWeb3Providers = ! hasVerifiedWeb3 && web3Options . length > 0 ;
188
185
189
186
const headerTitle = ! onlyLegalConsentMissing
190
187
? localizationKeys ( 'signUp.continue.title' )
@@ -209,10 +206,10 @@ function _SignUpContinue() {
209
206
gap = { 8 }
210
207
>
211
208
< SocialButtonsReversibleContainerWithDivider >
212
- { ( showOauthProviders || showWeb3Providers ) && ! onlyLegalConsentMissing && (
209
+ { showOauthProviders && ! onlyLegalConsentMissing && (
213
210
< SignUpSocialButtons
214
211
enableOAuthProviders = { showOauthProviders }
215
- enableWeb3Providers = { showWeb3Providers }
212
+ enableWeb3Providers = { false }
216
213
continueSignUp
217
214
/>
218
215
) }
0 commit comments