diff --git a/src/pages/ValidatorOnboarding/KeyGeneration/KeyGeneration.tsx b/src/pages/ValidatorOnboarding/KeyGeneration/KeyGeneration.tsx index 8d35ccb5..34b8c8c1 100644 --- a/src/pages/ValidatorOnboarding/KeyGeneration/KeyGeneration.tsx +++ b/src/pages/ValidatorOnboarding/KeyGeneration/KeyGeneration.tsx @@ -5,9 +5,10 @@ import { Text } from '@status-im/components' import KeyFiles from './KeyFiles' import { useState } from 'react' import RecoveryPhrase from './RecoveryPhrase' +import { KEY_FILES, RECOVERY_PHRASE } from '../../../constants' const KeyGeneration = () => { - const [selectedRecoveryMechanism, setSelectedRecoveryMechanism] = useState('Key Files') + const [selectedRecoveryMechanism, setSelectedRecoveryMechanism] = useState(KEY_FILES) const handleRecoveryMechanismChange = (value: string) => { setSelectedRecoveryMechanism(value) @@ -23,8 +24,8 @@ const KeyGeneration = () => { 4 Validators - {selectedRecoveryMechanism === 'Key Files' && } - {selectedRecoveryMechanism === 'Recovery Phrase' && } + {selectedRecoveryMechanism === KEY_FILES && } + {selectedRecoveryMechanism === RECOVERY_PHRASE && } ) } diff --git a/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryMechanism.stories.ts b/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryMechanism.stories.ts index 460ea0e5..02ad657a 100644 --- a/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryMechanism.stories.ts +++ b/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryMechanism.stories.ts @@ -1,6 +1,7 @@ import type { Meta, StoryObj } from '@storybook/react' import RecoveryMechanism from './RecoveryMechanism' +import { KEY_FILES } from '../../../constants' const meta = { title: 'ValidatorOnboarding/RecoveryMechanism', @@ -17,7 +18,7 @@ type Story = StoryObj export const Page: Story = { args: { - selectedRecoveryMechanism: 'Key Files', + selectedRecoveryMechanism: KEY_FILES, handleRecoveryMechanismChange: () => {}, }, } diff --git a/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryMechanism.tsx b/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryMechanism.tsx index 8aa131d4..baaadc68 100644 --- a/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryMechanism.tsx +++ b/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryMechanism.tsx @@ -1,6 +1,7 @@ import { Text } from '@status-im/components' import { XStack, YStack } from 'tamagui' import RecoveryMechanismCard from './RecoveryMechanismCard' +import { BOTH_KEY_AND_RECOVERY, KEY_FILES, RECOVERY_PHRASE } from '../../../constants' type RecoveryMechanismProps = { selectedRecoveryMechanism: string @@ -18,17 +19,17 @@ const RecoveryMechanism = ({ diff --git a/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryMechanismCard.stories.ts b/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryMechanismCard.stories.ts index 6b570d50..8f3192b0 100644 --- a/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryMechanismCard.stories.ts +++ b/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryMechanismCard.stories.ts @@ -1,6 +1,7 @@ import type { Meta, StoryObj } from '@storybook/react' import RecoveryMechanismCard from './RecoveryMechanismCard' +import { KEY_FILES } from '../../../constants' const meta = { title: 'ValidatorOnboarding/RecoveryMechanismCard', @@ -17,8 +18,8 @@ type Story = StoryObj export const Page: Story = { args: { - value: 'Key Files', - selectedRecoveryMechanism: 'Key Files', + value: KEY_FILES, + selectedRecoveryMechanism: KEY_FILES, handleRecoveryMechanismChange: () => {}, }, }