diff --git a/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryMechanism/RecoveryMechanismCard.stories.ts b/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryMechanism/RecoveryMechanismCard.stories.ts index 85c512c5..072e824c 100644 --- a/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryMechanism/RecoveryMechanismCard.stories.ts +++ b/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryMechanism/RecoveryMechanismCard.stories.ts @@ -19,6 +19,7 @@ export const KeystoreFiles: Story = { args: { value: KEYSTORE_FILES, recoveryMechanism: KEYSTORE_FILES, + icon: 'keystore-files-icon.svg', }, } @@ -26,6 +27,7 @@ export const RecoveryPhrase: Story = { args: { value: RECOVERY_PHRASE, recoveryMechanism: RECOVERY_PHRASE, + icon: 'recovery-phrase-icon.svg', }, } @@ -33,6 +35,7 @@ export const BothKeyAndRecovery: Story = { args: { value: BOTH_KEY_AND_RECOVERY, recoveryMechanism: BOTH_KEY_AND_RECOVERY, + icon: 'both-recovery-keystore-icon.svg', }, } @@ -40,6 +43,7 @@ export const NotSelected: Story = { args: { value: KEYSTORE_FILES, recoveryMechanism: '', + icon: 'keystore-files-icon.svg', }, } @@ -47,5 +51,6 @@ export const WithoutValue: Story = { args: { value: '', recoveryMechanism: KEYSTORE_FILES, + icon: '', }, }