From 9efd366812c0d537e56db166e710c44826a02fd3 Mon Sep 17 00:00:00 2001 From: Julia Friesel <julia.friesel@gmail.com> Date: Fri, 14 Sep 2018 17:17:00 +0200 Subject: [PATCH] Improve backup warning text --- components/labels.js | 2 +- components/password-prompt.js | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/components/labels.js b/components/labels.js index d7f81994..e8fad47a 100644 --- a/components/labels.js +++ b/components/labels.js @@ -62,7 +62,7 @@ export const settings = { changePassword: 'Change password', enterNew: "Please enter a new password", backupReminderTitle: 'Have you made a backup of your data?', - backupReminder: 'When you make changes to your password, we delete your old data and store it in a new version. To be safe, please backup your data using the export function before making changes to your password. Making any changes to your password setting will also restart the app immediately.', + backupReminder: 'Just to be safe, please backup your data using the export function before making changes to your password.\n\nPlease also make sure you do not lose your password. There is no way to recover your data if you do.\n\nMaking any changes to your password setting will restart the app.', } } diff --git a/components/password-prompt.js b/components/password-prompt.js index 1c933e79..d9125bf2 100644 --- a/components/password-prompt.js +++ b/components/password-prompt.js @@ -36,7 +36,6 @@ export default class PasswordPrompt extends Component { try { await openDb({hash: msg.message, persistConnection: true }) } catch (err) { - console.log(err) Alert.alert( shared.incorrectPassword, shared.incorrectPasswordMessage, -- GitLab