Skip to content

Commit

Permalink
[FEAT]: Update ManageKey flow copy
Browse files Browse the repository at this point in the history
  • Loading branch information
mcayuelas-ledger committed Aug 27, 2024
1 parent f159469 commit 92e8fbc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions apps/ledger-live-mobile/src/locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -6758,13 +6758,13 @@
"step1": {
"title": "Manage your key",
"titleCta": "Delete your key",
"descCta": "All your synced data will be deleted."
"descCta": "All synced accounts will be removed. This won’t affect your local accounts."
},
"step2": {
"delete": "Delete",
"cancel": "Cancel",
"title": "Do you really want to delete your encryption key?",
"desc": "By clicking delete, your devices will be unsynchronized and all synchronized data will be deleted. Rest assured that taking this action does not impact your funds. You may resync your accounts at any time."
"desc": "By clicking delete, your apps will be unsynchronized, and your backup will be deleted. Rest assured, this action does not affect your funds or your accounts in Ledger Live. You may resync your accounts at any time."
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ export function ConfirmManageKey({ onClickConfirm, onCancel }: Props) {

<Flex flexDirection="row" justifyContent="space-between">
<Flex flex={1} mr={2}>
<Button onPress={onClickConfirm} type="main" outline testID="delete-trustchain">
{t("walletSync.walletSyncActivated.manageKey.drawer.step2.delete")}
<Button onPress={onCancel} outline type="main">
{t("walletSync.walletSyncActivated.manageKey.drawer.step2.cancel")}
</Button>
</Flex>
<Flex flex={1} ml={2}>
<Button onPress={onCancel} type="main">
{t("walletSync.walletSyncActivated.manageKey.drawer.step2.cancel")}
<Button onPress={onClickConfirm} type="main" testID="delete-trustchain">
{t("walletSync.walletSyncActivated.manageKey.drawer.step2.delete")}
</Button>
</Flex>
</Flex>
Expand Down

0 comments on commit 92e8fbc

Please sign in to comment.