From cbcbb3195f561124cf368b989d69fa43d73dd050 Mon Sep 17 00:00:00 2001 From: RadoslavDimchev Date: Fri, 26 Jan 2024 10:16:56 +0200 Subject: [PATCH] fix: name of copy pasted recovery phrase notification --- src/pages/ValidatorOnboarding/ContinueButton.tsx | 6 +++--- ...astedNotification.tsx => CopyPastedRecoveryPhrase.tsx} | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) rename src/pages/ValidatorOnboarding/{CopyPastedNotification.tsx => CopyPastedRecoveryPhrase.tsx} (85%) diff --git a/src/pages/ValidatorOnboarding/ContinueButton.tsx b/src/pages/ValidatorOnboarding/ContinueButton.tsx index 27152081..caa8e5d4 100644 --- a/src/pages/ValidatorOnboarding/ContinueButton.tsx +++ b/src/pages/ValidatorOnboarding/ContinueButton.tsx @@ -14,7 +14,7 @@ import { setValidWords, } from '../../redux/ValidatorOnboarding/KeyGeneration/slice' import { useWindowSize } from '../../hooks/useWindowSize' -import CopyPastedNotification from './CopyPastedNotification' +import CopyPastedRecoveryPhrase from './CopyPastedRecoveryPhrase' const ContinueButton = () => { const windowSize = useWindowSize() @@ -139,7 +139,7 @@ const ContinueButton = () => { return ( {windowSize.width < 1155 && ( - + )} { marginTop: '12px', }} > - {windowSize.width >= 1155 && } + {windowSize.width >= 1155 && } {isActivationValScreen && ( { +}: CopyPastedRecoveryPhraseProps) => { const isCopyPastedPhrase = useSelector( (state: RootState) => state.keyGeneration.isCopyPastedPhrase, ) @@ -37,4 +37,4 @@ const CopyPastedNotification = ({ ) } -export default CopyPastedNotification +export default CopyPastedRecoveryPhrase