File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
src/apps/accounts/src/settings/tabs/account/security/dice-setup-modal Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -63,8 +63,6 @@ const DiceSetupModal: FC<DiceSetupModalProps> = (props: DiceSetupModalProps) =>
63
63
}
64
64
65
65
function verificationCallback ( data : any ) : void {
66
- // eslint-disable-next-line no-console
67
- console . log ( 'dice verificationCallback data' , data )
68
66
if ( data . success ) {
69
67
const userEmail : string = get ( data , 'user.profile.Email' )
70
68
if ( ! isUndefined ( userEmail ) && lowerCase ( userEmail ) === lowerCase ( props . profile . email ) ) {
@@ -82,7 +80,7 @@ const DiceSetupModal: FC<DiceSetupModalProps> = (props: DiceSetupModalProps) =>
82
80
toast . error ( 'Something went wrong. Please try again later.' )
83
81
} )
84
82
} else {
85
- setStep ( 4 )
83
+ setStep ( 5 )
86
84
}
87
85
} else {
88
86
setStep ( 5 )
You can’t perform that action at this time.
0 commit comments