diff --git a/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryPhrase.tsx b/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryPhrase.tsx index fd98dd72..8cc4f723 100644 --- a/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryPhrase.tsx +++ b/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryPhrase.tsx @@ -24,7 +24,9 @@ const RecoveryPhrase = ({ isKeystoreFiles }: RecoveryPhraseProps) => { const dispatch = useDispatch() useEffect(() => { - getMnemonic() + if (generatedMnemonic.length === 0) { + getMnemonic() + } }, []) const getMnemonic = async () => {