diff --git a/src/pages/ValidatorOnboarding/KeyGeneration/KeyGeneration.tsx b/src/pages/ValidatorOnboarding/KeyGeneration/KeyGeneration.tsx index 5ea8de0f..345befe2 100644 --- a/src/pages/ValidatorOnboarding/KeyGeneration/KeyGeneration.tsx +++ b/src/pages/ValidatorOnboarding/KeyGeneration/KeyGeneration.tsx @@ -4,12 +4,22 @@ import RecoveryMechanism from './RecoveryMechanism' import { Button, InformationBox, Text } from '@status-im/components' import { CloseCircleIcon } from '@status-im/icons' import PasswordFields from './PasswordFields' +import { useState } from 'react' const KeyGeneration = () => { + const [selectedRecoveryMechanism, setSelectedRecoveryMechanism] = useState('key-files') + + const handleRecoveryMechanismChange = (value: string) => { + setSelectedRecoveryMechanism(value) + } + return ( - + 4 Validators