Skip to content

Commit

Permalink
fix(suite): fix link in pass modal
Browse files Browse the repository at this point in the history
  • Loading branch information
MiroslavProchazka committed Nov 23, 2024
1 parent cf5fb05 commit 9c27863
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/suite-data/files/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -1420,7 +1420,7 @@
"TR_PAGINATION_NEWER": "Newer",
"TR_PAGINATION_OLDER": "Older",
"TR_PASSPHRASE_CASE_SENSITIVE": "Note: Passphrase is case-sensitive.",
"TR_PASSPHRASE_DESCRIPTION_ITEM1": "It's important to first learn how a passphrase works",
"TR_PASSPHRASE_DESCRIPTION_ITEM1": "It's important to first <a>learn how a passphrase works</a>.",
"TR_PASSPHRASE_DESCRIPTION_ITEM2": "A passphrase opens a wallet secured by that phrase",
"TR_PASSPHRASE_DESCRIPTION_ITEM3": "No one can recover it, not even Trezor Support",
"TR_PASSPHRASE_HIDDEN_WALLET": "Passphrase wallet",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import { OpenGuideFromTooltip } from 'src/components/guide';
import { CardWithDevice } from 'src/views/suite/SwitchDevice/CardWithDevice';
import { SwitchDeviceModal } from 'src/views/suite/SwitchDevice/SwitchDeviceModal';
import { TrezorLink } from 'src/components/suite/TrezorLink';

import { PassphraseWalletConfirmation } from './PassphraseWalletConfirmation';

interface PassphraseModalProps {
Expand Down Expand Up @@ -132,6 +131,7 @@ export const PassphraseModal = ({ device }: PassphraseModalProps) => {
<TrezorLink
target="_blank"
variant="underline"
type="hint"
href={HELP_CENTER_PASSPHRASE_URL}
>
{chunks}
Expand Down
2 changes: 1 addition & 1 deletion packages/suite/src/support/messages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9150,7 +9150,7 @@ const messages = defineMessagesWithTypeCheck({
},
TR_PASSPHRASE_DESCRIPTION_ITEM1: {
id: 'TR_PASSPHRASE_DESCRIPTION_ITEM1',
defaultMessage: "It's important to first learn how a passphrase works",
defaultMessage: "It's important to first <a>learn how a passphrase works</a>.",
},
TR_PASSPHRASE_DESCRIPTION_ITEM2: {
id: 'TR_PASSPHRASE_DESCRIPTION_ITEM2',
Expand Down

0 comments on commit 9c27863

Please sign in to comment.