Skip to content

Commit

Permalink
chore: readd fragments to help escape single quote
Browse files Browse the repository at this point in the history
  • Loading branch information
pete-watters committed Aug 2, 2024
1 parent 17d71a8 commit 433dba8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,12 @@ export const BackUpSecretKeyPage = memo(() => {
<Content>
<TwoColumnLayout
title="Back up your Secret Key"
content="You'll need it to access your wallet on a new device, or this one if you lose your password — so back it up somewhere safe!"
content={
<>
You'll need it to access your wallet on a new device, or this one if you lose your
password — so back it up somewhere safe!
</>
}
action={
<Stack gap="space.05" mt="space.04">
<HStack alignItems="center">
Expand Down
7 changes: 6 additions & 1 deletion src/app/pages/onboarding/set-password/set-password.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,12 @@ function SetPasswordPage() {
password
</>
}
content="Your password protects your Secret Key on this device only. To access your wallet on another device, you'll need just your Secret Key."
content={
<>
Your password protects your Secret Key on this device only. To access your
wallet on another device, you'll need just your Secret Key.
</>
}
>
<>
<PasswordField strengthResult={strengthResult} isDisabled={loading} />
Expand Down

0 comments on commit 433dba8

Please sign in to comment.