Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(mobile): wrong text for on import screens #4970

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/mobile/src/app/import-signers/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const items = [
{
name: 'seed',
title: 'Import private key',
description: 'Enter a private key or a 12-24 word seed phrase.',
description: 'Enter a private key.',
icon: <SafeFontIcon name="wallet" size={16} />,
Image: Seed,
imageProps: { marginBottom: -31 },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export function ImportPrivateKey() {
<View marginTop="$2">
<SectionTitle
title="Import a private key"
description="Enter your seed phrase or a private key below. Make sure to do so in a safe and private place."
description="Enter your private key below. Make sure to do so in a safe and private place."
/>
</View>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ describe('ImportPrivateKey', () => {

expect(screen.getByText('Import a private key')).toBeTruthy()
expect(
screen.getByText(
'Enter your seed phrase or a private key below. Make sure to do so in a safe and private place.',
),
screen.getByText('Enter your private key below. Make sure to do so in a safe and private place.'),
).toBeTruthy()
})

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export function ImportError() {
<SafeFontIcon color="$backgroundPress" name="shield" />

<Text color="$backgroundPress" fontSize="$4">
Safe doesn’t store your seed phrase.
Safe doesn’t store your private key.
</Text>
</View>

Expand Down
Loading