From 57bf73024154d26dec58acb9e35b5d6be365168b Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Mon, 17 Jan 2022 16:33:57 +0100 Subject: [PATCH] mention it's better to not close the app --- src/domain/LogoutViewModel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/domain/LogoutViewModel.js b/src/domain/LogoutViewModel.js index 2607ca32..f22637de 100644 --- a/src/domain/LogoutViewModel.js +++ b/src/domain/LogoutViewModel.js @@ -57,7 +57,7 @@ export class LogoutViewModel extends ViewModel { if (this._error) { return this.i18n`Could not log out of device: ${this._error.message}`; } else { - return this.i18n`Logging out…`; + return this.i18n`Logging out… Please don't close the app.`; } } }