Skip to content

Commit

Permalink
fix: Revert Account Add Screen description
Browse files Browse the repository at this point in the history
  • Loading branch information
jinoosss committed Jan 30, 2024
1 parent 5b37ab4 commit c6441d3
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ import GetMnemonicStep from './create-account-step';
import SensitiveInfoStep from '@components/pages/web/sensitive-info-step';
import { ADENA_DOCS_PAGE } from '@common/constants/resource.constant';

const description = 'This will generate a seed phrase on your device. Only proceed if you \nunderstand how to safely store your seed phrase.';

const AccountAddScreen = (): ReactElement => {
const useAccountAddScreenReturn = useAccountAddScreen();
const { step, onClickGoBack, onClickNext } = useAccountAddScreenReturn;
Expand All @@ -20,9 +18,9 @@ const AccountAddScreen = (): ReactElement => {
<>
<WebMainHeader stepLength={0} onClickGoBack={onClickGoBack} />
<SensitiveInfoStep
desc={description}
link={`${ADENA_DOCS_PAGE}/user-guide/sidebar-menu/add-account`}
desc='You are about to add a new private key derived from your existing seed phrase. Be sure to store it in a safe place.'
onClickNext={onClickNext}
link={`${ADENA_DOCS_PAGE}/user-guide/sidebar-menu/add-account`}
/>
</>
)}
Expand Down

0 comments on commit c6441d3

Please sign in to comment.