Skip to content

Commit

Permalink
CP-3774: update logout wording (#449)
Browse files Browse the repository at this point in the history
  • Loading branch information
atn4z7 authored Oct 18, 2022
1 parent 16f291e commit 3c69508
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/navigation/AppNavigation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ enum NoWalletScreens {
}

enum NoWalletTabs {
ExistingWallet = 'Existing Wallet',
ExistingWallet = 'Recover Wallet',
NewWallet = 'New Wallet',
EnterWallet = 'Enter Wallet'
}
Expand Down
2 changes: 1 addition & 1 deletion app/screens/drawer/components/SignOutItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const SignOutItem = () => {
<AvaButton.SecondaryLarge
style={{ margin: 16 }}
onPress={() => navigation.navigate(AppNavigation.Modal.SignOut)}>
Reset Wallet
Delete Wallet
</AvaButton.SecondaryLarge>
)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const AccessExistingWalletItem = () => {
return (
<>
<AvaListItem.Base
title={'Access existing wallet'}
title={'Recover Wallet'}
titleAlignment={'flex-start'}
showNavigationArrow
leftComponent={<WalletSVG size={18} />}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const CreateNewWalletItem = () => {
return (
<>
<AvaListItem.Base
title={'Create new wallet'}
title={'Create New Wallet'}
titleAlignment={'flex-start'}
showNavigationArrow
leftComponent={<CreateNewWalletPlusSVG bold size={18} />}
Expand Down
4 changes: 2 additions & 2 deletions app/screens/mainView/SignOutModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ const SignOutModal = ({ onConfirm }: { onConfirm: () => void }) => {

return (
<WarningModal
title={'Are you sure you want to erase your wallet?'}
title={'Are you sure you want to delete your wallet?'}
message={
'Your current wallet will be removed from this app permanently. This cannot be undone. \n\nYou can ONLY recover this wallet with your recovery phrase. Core wallet does not store your recovery phrase.'
'This will remove all wallet related data from your device. This cannot be undone. \n\nYou can always recover this wallet with your recovery phrase. Core wallet does not store your recovery phrase.'
}
actionText={'I understand, continue'}
dismissText={'Cancel'}
Expand Down

0 comments on commit 3c69508

Please sign in to comment.